home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / redland-utils / RELEASE.html < prev    next >
Encoding:
Extensible Markup Language  |  2009-04-12  |  85.8 KB  |  2,666 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  4. <head>
  5.   <title>Redland RDF Application Framework - Release Notes</title>
  6.   <style type="text/css">
  7. <!--
  8. pre
  9. {
  10.     margin: 1em 4em 1em 4em;
  11.     background-color: #eee;
  12.     padding: 0.5em;
  13.     border-color: #006;
  14.     border-width: 1px;
  15.     border-style: dotted;
  16. }
  17. -->
  18.   </style>
  19. </head>
  20. <body>
  21.  
  22.   <h1>Redland RDF Application Framework - Release Notes</h1>
  23.  
  24. <h2 id="rel1_0_9"><a name="rel1_0_9">Redland 1.0.9 Changes</a></h2>
  25.  
  26. <p>The main changes in this release are:</p>
  27.  
  28. <p>Made storages modular by default - separate dynamically loaded
  29. modules discovered from presence in the
  30. <em>PREFIX</em><code>/lib/redland</code> directory.
  31. or from the directory defined in the
  32. <code>REDLAND_MODULE_PATH</code> environment variable directory.
  33. </p>
  34.  
  35. <p>Building requires installed Raptor (1.4.18 or newer) and Rasqal libraries.
  36. </p>
  37.  
  38. <p>Issues Fixed:</p>
  39. <ul>
  40. <li><a href="http://bugs.librdf.org/mantis/view.php?id=272">Issue #0000272</a>: Casts for g++</li>
  41. <li><a href="http://bugs.librdf.org/mantis/view.php?id=282">Issue #0000282</a>: Documentation fixes</li>
  42. <li><a href="http://bugs.librdf.org/mantis/view.php?id=283">Issue #0000283</a>: <code>librdf_new_node_from_blank_identifier()</code> read memory after free bug.</li>
  43. <li><a href="http://bugs.librdf.org/mantis/view.php?id=285">Issue #0000285</a>: <code>librdf_storage_postgresql_get_contexts()</code> fix</li>
  44. <li><a href="http://bugs.librdf.org/mantis/view.php?id=286">Issue #0000286</a>: multiple postgresql storage fixes.</li>
  45. </ul>
  46.  
  47.  
  48. <h3>General Changes</h3>
  49.  
  50. <p>Developer builds from Subversion now require libtool 2.2.0 or
  51. newer to <code>libtoolize</code> from <code>configure.ac</code>.</p>
  52.  
  53. <p><code>configure</code> now discovers Berkeley DB 4.7</p>
  54.  
  55. <p><code>configure</code> options <code>--with-raptor=internal</code>
  56. and <code>--with-rasqal=internal</code> were removed.
  57. </p>
  58.  
  59. <p>Removed openssl digest support - not used much and an extra large
  60. dependency. MD5 and SHA1 remain builtin.
  61. </p>
  62.  
  63.  
  64. <h3>Statement Class Changes</h3>
  65.  
  66. <p>Fix to <code>librdf_statement_encode_parts()</code> for buffer
  67. overrun error that could occur with certain size buffers.  Patch from
  68. Lou Sakey - thanks.
  69. </p>
  70.  
  71.  
  72. <h3>Storage Class Changes</h3>
  73.  
  74. <p>Made the redland storage module API
  75. <code>librdf_storage_factory</code> public.  What was called the
  76. storage <em>context</em> is now less confusingly called the storage
  77. <em>instance</em>.
  78. </p>
  79.  
  80. <p>Moved iterator and stream <code>get_method</code> flags to public
  81. API as new enums since they are used by the storage modules API.
  82. </p>
  83.  
  84. <p>Moved <code>librdf_log()</code> and <code>librdf_log_simple()</code>
  85. into public API to allow external storage modules to log messages.
  86. </p>
  87.  
  88. <p>More checks for failure during storage instance allocation.
  89. </p>
  90.  
  91. <p>postgresql storage: Fixes for "Numerous leaks, potential NULL
  92. pointer use, and dropped postgresql errors and buffer overruns in the
  93. postgresql storage module" based on patches in Issue #0000286.
  94. </p>
  95.  
  96. <p>sqlite storage: Fixes to prevent deadlocks with <code>BEGIN
  97. IMMEDIATE</code> instead of the default <code>BEGIN DEFERRED</code>.
  98. No longer writes to the sqlite database when just querying.  Several
  99. other fixes.
  100. </p>
  101.  
  102. <p>trees storage: Several fixes.
  103. </p>
  104.  
  105.  
  106. <h3>Other Changes</h3>
  107.  
  108. <p>Multiple Win32 build fixes based on patches from Lou Sakey - thanks.
  109. </p>
  110.  
  111. <p>Added <code>librdf_parser_guess_name2()</code> to SWIG API.
  112. </p>
  113.  
  114.  
  115. <h3>Internal Changes</h3>
  116.  
  117. <p>Added LRU cache for internal use.</p>
  118.  
  119. <p>Several autogen.sh updates for libltdl.</p>
  120.  
  121. <p>Use libtool's <code>libltdl</code> to dynamially load storage
  122. modules.  Will link in a copy from sources if not present in the
  123. system from libtool.
  124. </p>
  125.  
  126. <p>Internal raptor and rasqal sources removed - now use
  127. <code>pkg-config(1)</code> to find external libraries to compile and
  128. link to.
  129. </p>
  130.  
  131. <p>Fixes for AVL Tree: update parent pointers when deleting - patch
  132. from Aymeric Barthe - thanks.
  133. </p>
  134.  
  135. <p>Added internal support for upcoming Raptor V2 API.  Not yet enabled.
  136. Added <code>librdf_world_get_raptor()</code> and
  137. <code>librdf_world_set_raptor()</code> methods.
  138. Added <code>librdf_parser_guess_name2()</code> with librdf_world parameter
  139. and deprecated <code>librdf_parser_guess_name()</code> without it.
  140. </p>
  141.  
  142. <p>Wrapped deprecated functions with <code>REDLAND_DISABLE_DEPRECATED</code>
  143. blocks.
  144. </p>
  145.  
  146.  
  147.  
  148.  
  149. <h2 id="rel1_0_8"><a name="rel1_0_8">Redland 1.0.8 Changes</a></h2>
  150.  
  151. <p>The main changes in this release are:</p>
  152.  
  153. <p>Updated to use 
  154. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.16
  155. (<a href="http://librdf.org/rasqal/RELEASE.html#rel0_9_16">Rasqal 0.9.16 release notes</a>)
  156. from 0.9.15.  NOTE: Rasqal's ABI and API changed so Redland 1.0.8
  157. requires 0.9.16 or newer.
  158. </p>
  159.  
  160. <p>Updated to use
  161. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.18
  162. (<a href="http://librdf.org/raptor/RELEASE.html#rel1_4_18">Raptor 1.4.18 release notes</a>)
  163. from 1.4.16.
  164. </p>
  165.  
  166. <p>Added a new in-memory indexed storage 'trees' using AVL Trees</p>
  167.  
  168. <p>Issues Fixed:</p>
  169. <ul>
  170.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=256">0000256</a>: mysql reconnect not working (MySQL v5 only?)</li>
  171. </ul>
  172.  
  173. <blockquote>
  174. <p><strong>NOTE:</strong> The next release of redland will NOT
  175. include raptor and rasqal in the tarball, they will be separate
  176. download dependencies.</p>
  177.  
  178. <p><strong>NOTE</strong>: In the next release of redland, the
  179. <code>redland-config</code> utility that provides the compile and
  180. link args will be deprecated, generate a warning when run and will
  181. turn into a wrapper for <code>pkg-config redland ...</code>
  182. It will be removed in a future release.</p>
  183. </blockquote>
  184.  
  185.  
  186. <h3>General Changes</h3>
  187.  
  188. <p><code>configure</code> was updated to ensure that redland 1.0.8+
  189. will work with rasqal 0.9.16 to 0.9.99 only.
  190. </p>
  191.  
  192. <h3>Parser Class Changes</h3>
  193.  
  194. <p><code>librdf_parser_set_feature()</code>  now handles setting
  195. feature values as strings or integers, depending on the required
  196. type (although Raptor will handle this too).
  197. </p>
  198.  
  199. <p>Added <code>librdf_parser_parse_file_handle_as_stream()</code> and
  200. <code>librdf_parser_parse_file_handle_into_model()</code> helper
  201. methods.
  202. </p>
  203.  
  204. <h3>Serializer Class Changes</h3>
  205. <p><code>librdf_serializer_set_feature()</code> now handles setting
  206. feature values as strings or integers, depending on the required
  207. type (although Raptor will handle this too).
  208. </p>
  209.  
  210. <h3>Storage Class Changes</h3>
  211. <p>Added a new in-memory storage named "trees" by Dave Robillard that
  212. uses AVLTrees internally for faster indexed triple store/querying.
  213. This is an alpha quality storage since it is brand new and it may be
  214. changed in future.
  215. </p>
  216.  
  217. <h3>Other Changes</h3>
  218.  
  219. <p><code>LIBRDF_URI_RDF_MS</code>, <code>LIBRDF_URI_RDF_SCHEMA</code>
  220. public API macros changed definition to pass in a world parameter.
  221. </p>
  222.  
  223. <p>Added <code>librdf_get_concept_ms_namespace()</code> and
  224. <code>librdf_get_concept_schema_namespace()</code> to make the
  225. concept macros above work.
  226. </p>
  227.  
  228. <p>Added an rss2atom example program.</p>
  229.  
  230. <p>Update configure to use autoconf 2.5.x <code>AC_CHECK_TYPES</code>
  231. for testing byte, u32 and u64.</p>
  232.  
  233. <p>Fixes for resilence under low memory and allocation failures.</p>
  234.  
  235.  
  236. <h3>Internal Changes</h3>
  237.  
  238. <p>Applied some updates from running the Linux 'sparse' utility.</p>
  239.  
  240. <p>Allow get_context method calls in stream/iterator map functions.
  241. Originally
  242. <a href="http://lists.usefulinc.com/pipermail/redland-dev/2008-May/001756.html">reported on redland-dev 6 May 2008</a>
  243. by John Fieber.
  244. </p>
  245.  
  246. <p>The storage method
  247. <code>librdf_storage_find_statements_in_context()</code> now uses the
  248. storage factory method find_statements_in_context if it exists,
  249. instead of always using the find_statements factory method and
  250. filtering.
  251. </p>
  252.  
  253.  
  254. <h2 id="rel1_0_7"><a name="rel1_0_7">Redland 1.0.7 Changes</a></h2>
  255.  
  256. <p>The main changes in this release are:</p>
  257.  
  258. <p>Updated to use 
  259. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.15
  260. (<a href="http://librdf.org/rasqal/RELEASE.html#rel0_9_15">Rasqal 0.9.15 release notes</a>)
  261. from 0.9.14.  NOTE: Rasqal's API will change in 0.9.16 so Redland 1.0.7
  262. requires 0.9.15 exactly - no newer, no older.
  263. </p>
  264.  
  265. <p>Updated to use
  266. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.16
  267. (<a href="http://librdf.org/raptor/RELEASE.html#rel1_4_16">Raptor 1.4.16 release notes</a>)
  268. from 1.4.15.
  269. </p>
  270.  
  271.  
  272. <p>Added modular storage backends.  When
  273. <code>--enable-modular</code> is given to configure, all the storage
  274. major backends are compiled as dynamically loadable modules.  The
  275. memory, file and uri storages are always available.  This is not
  276. enabled by default as it is a new feature.
  277. </p>
  278.  
  279.  
  280. <p>Issues Fixed:</p>
  281. <ul>
  282.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000187">0000187</a>: "rdf_query_results.c", line 630: void function cannot return value</li>
  283.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000189">0000189</a>: librdf_uri_is_file_uri: wrong return value</li>
  284.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000203">0000203</a>: API declarations for Symbian portability</li>
  285.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000205">0000205</a>: Memory leak in rdf_query_rasqal.c</li>
  286.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000209">0000209</a>: Null dereference + assertion failures in minimal librdf setup-cleanup</li>
  287.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000213">0000213</a>: Multiple instances of world object make trouble</li>
  288.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000215">0000215</a>: librdf_new_node_from_typed_counted_literal() does not respect parameter lengths</li>
  289.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000218">0000218</a>: librdf_query_execute does not assert model parameter</li>
  290.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000229">0000229</a>: Segmentation fault when invoking librdf_new_model_from_model()</li>
  291.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000230">0000230</a>: on Gentoo/FreeBSD redland fails compilation due to a missing #define pthread.h</li>
  292.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000234">0000234</a>: autogen.sh $dir quoting</li>
  293.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000235">0000235</a>: $(EXEEXT) in tests</li>
  294.   <li><a href="http://bugs.librdf.org/mantis/view.php?id=0000236">0000236</a>: EOL issues when building svn version on cygwin</li>
  295. </ul>
  296.  
  297.  
  298. <h3>General Changes</h3>
  299.  
  300. <p><code>configure</code> was updated to ensure that redland 1.0.7
  301. will work with rasqal 0.9.15 only due to the future API change coming
  302. in the next rasqal version.
  303. </p>
  304.  
  305. <p>Make lots of writable static data truly constant especially from
  306. writable static data from rdf_concepts.  This causes a
  307. <strong>SOURCE COMPATIBILITY BREAK</strong>: the
  308. <code>rdf_concepts.h</code> public API node and uri
  309. macros now require a <code>librdf_world*</code> parameter.
  310. </p>
  311.  
  312.  
  313. <h3>Parser Class Changes</h3>
  314.  
  315. <p>Added <code>librdf_parser_set_uri_filter()</code> and
  316. <code>librdf_parser_get_uri_filter()</code> to set and get parser
  317. URI filters, passed on into raptor.
  318. </p>
  319.  
  320. <h3>Storage Class Changes</h3>
  321.  
  322. <p>Several SQLite storage improvements and fixes were made:</p>
  323. <ul>
  324. <li>Added transaction support</li>
  325. <li>Handle SQL errors more gracefully</li>
  326. <li>the contains_statement method now works with a blank subject node.</li>
  327. <li>Resource allocation and low mwmory fixes</li>
  328. </ul>
  329.  
  330. <h3>URI Class Changes</h3>
  331.  
  332. <p>Added <code>librdf_uri_compare()</code> to compare uri objects
  333. rather than rely on stringifying them and comparing the strings.
  334. </p>
  335.  
  336.  
  337. <h3>Internal and Other Changes</h3>
  338.  
  339. <p>Many low memory and error path, resource leak fixes for parsers,
  340. streams, module factory construction and module initialising.
  341. </p>
  342.  
  343. <p><code>librdf_serializer_set_namespace()</code> now allows NULL uri
  344. and prefix to be given.
  345. </p>
  346.  
  347. <p><code>librdf_storage_mysql_transaction_commit()</code> now
  348. terminates if there is no work to commit.
  349. </p>
  350.  
  351. <p>autogen.sh version comparsion was fixed so that 1.10 is seen as
  352. newer than 1.9.
  353. </p>
  354.  
  355.  
  356.  
  357. <h2 id="rel1_0_6"><a name="rel1_0_6">Redland 1.0.6 Changes</a></h2>
  358.  
  359. <p>The main changes in this release are:</p>
  360.  
  361. <p>Updated to use 
  362. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.14
  363. (<a href="http://librdf.org/rasqal/RELEASE.html#rel0_9_14">Rasqal 0.9.14 release notes</a>)
  364. from 0.9.13.
  365. </p>
  366.  
  367. <p>Updated to use
  368. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.15
  369. (<a href="http://librdf.org/raptor/RELEASE.html#rel1_4_15">Raptor 1.4.15 release notes</a>)
  370. from 1.4.13.
  371. </p>
  372.  
  373. <p>Plus a new transactions API for changes to the graph, implemented
  374. and tested for MySQL.</p>
  375.  
  376. <p>Added a new query results formatter class to turn a query results
  377. object into a syntax.</p>
  378.  
  379.  
  380. <h3>Model Class Changes</h3>
  381.  
  382. <p>Added a model transaction API:</p>
  383. <ul>
  384. <li><code>librdf_model_transaction_start()</code> to begin the transaction</li>
  385. <li><code>librdf_model_transaction_start_with_handle()</code> to begin it
  386. using an existing connection pointer (such as a MySQL connection)</li>
  387. <li><code>librdf_model_transaction_commit()</code> to commit the changes</li>
  388. <li><code>librdf_model_transaction_rollback()</code> to abort them (automatic
  389. if not  commited before a close)</li>
  390. <li><code>librdf_model_transaction_get_handle()</code> to
  391. get a handle associated with a connection.</li>
  392. </ul>
  393. <p>Fixes <a href="http://bugs.librdf.org/mantis/view.php?id=38">Issue #0000038</a>
  394. </p>
  395.  
  396. <p>Implemented the Transaction API for MySQL (tested) and PostgreSQL
  397. (not tested).
  398. </p>
  399.  
  400. <p>Invert test in <code>librdf_model_add_submodel()</code>.
  401. Fixes <a href="http://bugs.librdf.org/mantis/view.php?id=175">Issue#0000175</a>
  402. </p>
  403.  
  404.  
  405. <h3>Parser Class Changes</h3>
  406.  
  407. <p>Added <code>librdf_parser_guess_name()</code> to guess a parser
  408. name from content, similar to how a parser is constructed from
  409. content.
  410. </p>
  411.  
  412. <p>Added functions to return the namespaces declared during a parse:
  413. <code>librdf_parser_get_namespaces_seen_count()</code> to return the
  414. number seen, <code>librdf_parser_get_namespaces_seen_prefix()</code> to
  415. get the prefix string and
  416. <code>librdf_parser_get_namespaces_seen_uri()</code> to get the
  417. <code>librdf_uri*</code>.
  418. </p>
  419.  
  420.  
  421. <h3>Query and Query Results Class Changes</h3>
  422.  
  423. <p>Added a new <em>Query Results Formatter</em> class building
  424. <code>librdf_query_results_formatter*</code> objects
  425. to turn a query results into a syntax such as SPARQL query results
  426. formats, JSON.  New functions:</p>
  427. <ul>
  428. <li>Constructors: <code>librdf_new_query_results_formatter()</code> and
  429. <code>librdf_new_query_results_formatter_by_mime_type()</code>.
  430. </li>
  431. <li>Destructor: <code>librdf_free_query_results_formatter()</code></li>
  432. <li>Method: <code>librdf_query_results_formatter_write()</code>
  433. to write the query results to an iostream.</li>
  434. <li>Helper functions: <code>librdf_query_results_formats_check()</code>
  435. and <code>librdf_query_results_formats_enumerate()</code></li>
  436. </ul>
  437.  
  438. <p>Added <code>librdf_query_results_is_syntax()</code> to
  439. check if a query result is a syntax, and not any of the other
  440. possibilities - bindings, boolean or graph.
  441. </p>
  442.  
  443.  
  444. <h3>Serializer Class Changes</h3>
  445.  
  446. <p>Default to serializer named "rdfxml" if no name is given to ensure
  447. another rdfxml serializer such as XMP is not returned.
  448. </p>
  449.  
  450.  
  451. <h3>Storage Class Changes</h3>
  452.  
  453. <p>The MySQL storage implements the transaction API.  It batches up
  454. all the pending insertions and aggregates them so that any set of
  455. triple writes during the transaction sequence are all done at one
  456. point, with 4 INSERTs only.
  457. </p>
  458.  
  459. <p>Added a supporting
  460. functions <code>librdf_hash_interpret_template()</code> to
  461. interpolate variables into strings using a librdf_hash of
  462. key/values.</p>
  463.  
  464. <p>The MySQL storage now takes an optional storage option 'layout'
  465. that can choose between the v1 and v2 SQL schemas (only the table
  466. type has changed).  The SQL fragments are described in Turtle files
  467. that are installed and read on startup.
  468. </p>
  469.  
  470.  
  471. <h3>Configuration and Build Changes</h3>
  472.  
  473. <p><strong>Packagers note</strong>: two new files are installed into
  474. PREFIX/lib/redland for the MySQL schemas.  Without them installed,
  475. the MySQL storage will not work.
  476. </p>
  477.  
  478. <p>Removed the <code>configure</code> script option
  479. <code>--enable-parsers</code> since Raptor is always required and
  480. always used inside Redland whether or not any parsers were configured.
  481. </p>
  482.  
  483. <p>Use <code>pkg-config</code> Libs.private in
  484. <code>redland.pc</code> for internal dynamically linked libraries.
  485. </p>
  486.  
  487. <p><code>redland-config</code> gains an --private-libs option to hold
  488. private libraries moved from --libs which now only contains -L and a
  489. -lrdf.
  490. </p>
  491.  
  492. <p>Added a building utility <code>touch-mtime.pl</code>
  493. to handle <code>touch -r</code> which does not work on SunOS.
  494. Fixes 
  495. <a href="http://bugs.librdf.org/mantis/view.php?id=159">Issue #0000159</a>
  496. </p>
  497.  
  498.  
  499. <h3>Other Changes</h3>
  500.  
  501. <p>Added <code>librdf_world_open()</code> for every public API
  502. constructor or function that mentions librdf_world* and could have
  503. failed to run <code>librdf_world_open()</code> after
  504. <code>librdf_new_world()</code>.  This makes
  505. <code>librdf_world_open()</code> entirely optional.
  506. Fixes
  507. <a href="http://bugs.librdf.org/mantis/view.php?id=173">Issue #0000173</a>
  508. </p>
  509.  
  510. <p><code>rdfproc</code> gains an --transactions / -T option for
  511. enabling transactions on the command line and an --results / -r
  512. option to set the query results formatter name.
  513. </p>
  514.  
  515. <p>Do not throw away the rasqal node type information now, it is needed
  516. later on in <code>FILTER</code> comparisons.
  517. Fixes
  518. <a href="http://bugs.librdf.org/mantis/view.php?id=153">Issue #0000153</a>
  519. </p>
  520.  
  521. <p>Fix reference count problem in storages that caused connections
  522. to fail to free in MySQL.
  523. Fixes
  524. <a href="http://bugs.librdf.org/mantis/view.php?id=150">#0000150</a>
  525. </p>
  526.  
  527. <p>Fix reference count / memory leak in file storage.
  528. </p>
  529.  
  530.  
  531.  
  532.  
  533. <h2 id="rel1_0_5"><a name="rel1_0_5">Redland 1.0.5 Changes</a></h2>
  534.  
  535. <p>The main changes in this release are:</p>
  536.  
  537. <p>Updated to use 
  538. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.13
  539. (<a href="http://librdf.org/rasqal/RELEASE.html#rel0_9_13">Rasqal 0.9.13 release notes</a>)
  540. from 0.9.12.
  541. </p>
  542.  
  543. <p>Updated to use
  544. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.13
  545. (<a href="http://librdf.org/raptor/RELEASE.html#rel1_4_13">Raptor 1.4.13 release notes</a>)
  546. from 1.4.9.
  547. </p>
  548.  
  549. <p>Plus several API additions and many bug fixes.</p>
  550.  
  551.  
  552. <h3>Configuration and Build Changes</h3>
  553.  
  554. <p><code>configure</code> now removes un-necessary tests for C++ or
  555. F77++ compilers that libtool stupidly insists on.  Add lots of
  556. gcc <code>-W</code> flags when they are supported and in maintainer
  557. mode.
  558. </p>
  559.  
  560. <p>Made <code>configure --with-threads</code> work.
  561. Fixes
  562. <a href="http://bugs.librdf.org/mantis/view.php?id=125">Issue #0000125</a>
  563. </p>
  564.  
  565.  
  566. <h3>Model Class Changes</h3>
  567.  
  568. <p>Methods
  569. <code>librdf_model_add</code>,
  570. <code>librdf_model_add_statement</code>,
  571. <code>librdf_model_add_typed_literal_statement</code>,
  572. <code>librdf_model_add_string_literal_statement</code> and
  573. <code>librdf_model_contains_statement</code>
  574. now enforce only allowing legal RDF triples.
  575. </p>
  576.  
  577. <p>Added <code>librdf_model_enumerate</code> to list all the
  578. model implementations - currently just one, a model over
  579. a storage.
  580. </p>
  581.  
  582.  
  583. <h3>Node Class Changes</h3>
  584.  
  585. <p>The node class can now encode and decode long literals with length
  586. >65535 using new encoding type 'N'.
  587. </p>
  588.  
  589. <p>Added new constructor
  590. <code>librdf_new_node_from_typed_counted_literal</code>
  591. to build a typed node with a counted literal string.
  592. </p>
  593.  
  594.  
  595. <h3>Parser Class Changes</h3>
  596.  
  597. <p>Changes to allow NULL base uris in parsing methods, but to fail if
  598. it is omitted but required.  Applies to
  599. <code>librdf_parser_parse_as_stream</code>,
  600. <code>librdf_parser_parse_into_model</code>,
  601. <code>librdf_parser_parse_string_as_stream</code>,
  602. <code>librdf_parser_parse_string_into_model</code>,
  603. <code>librdf_parser_parse_counted_string_as_stream</code>
  604. and
  605. <code>librdf_parser_parse_counted_string_into_model</code>
  606. </p>
  607.  
  608. <p>Added <code>librdf_parser_get_accept_header</code> to get
  609. the <code>Accept</code> header that would be sent with a parser
  610. HTTP fetch of content.
  611. </p>
  612.  
  613.  
  614. <h3>Query Class Changes</h3>
  615.  
  616. <p>Graph names in SPARQL now connect up to redland context nodes
  617. to allow SPARQL <code>GRAPH</code> to work.
  618. </p>
  619.  
  620.  
  621. <h3>Serializer Class Changes</h3>
  622.  
  623. <p>Added new methods to serialize <code>librdf_stream</code>s of triples rather
  624. than just <code>librdf_model</code>:
  625. <code>librdf_serializer_serialize_stream_to_file_handle</code>,
  626. <code>librdf_serializer_serialize_stream_to_file</code>,
  627. <code>librdf_serializer_serialize_stream_to_string</code>,
  628. <code>librdf_serializer_serialize_stream_to_counted_string</code> and
  629. <code>librdf_serializer_serialize_stream_to_iostream</code>.
  630. Fixes
  631. <a href="http://bugs.librdf.org/mantis/view.php?id=92">Issue #0000092</a>
  632. </p>
  633.  
  634.  
  635. <h3>Storage Class Changes</h3>
  636.  
  637. <p>Methods <code>librdf_storage_add_statement</code>,
  638. <code>librdf_storage_add_statements</code> and
  639. <code>librdf_storage_contains_statement</code>
  640. now enforce only allowing legal RDF triples.
  641. </p>
  642.  
  643. <p>The <em>Memory</em> storage now supports deleting while iterating or
  644. streaming the storage.
  645. </p>
  646.  
  647. <p>The <em>PostgreSQL</em> storage now accepts option 'database' like
  648. MySQL and other Redland relational databases in addition to the
  649. existing option it accepted, 'dbname'.
  650. </p>
  651.  
  652. <p><em>SQLite</em> storage fixes:<br />
  653. </p>
  654. <p>
  655. Fix crash in <code>librdf_model_context_remove_statements</code>
  656. Fixes
  657. <a href="http://bugs.librdf.org/mantis/view.php?id=103">Issue #0000103</a>
  658. </p>
  659.  
  660. <p>Wrap all <code>sqlite_FREE</code> calls on error messages so that
  661. they are only called with SQLITE API v2.
  662. Fixes
  663. <a href="http://bugs.librdf.org/mantis/view.php?id=105">Issue #0000105</a>
  664. </p>
  665.  
  666. <p>Check for no language or no datatype when they are NULL
  667. in <code>librdf_storage_sqlite_literal_helper</code>.
  668. Fixes
  669. <a href="http://bugs.librdf.org/mantis/view.php?id=136">Issue #0000136</a>
  670. </p>
  671.  
  672. <p>Store pending queries while the database is locked doing
  673. a <code>SELECT</code> and do them once the select is done.  Such as
  674. deleting triples during a find or serialise.
  675. Fixes
  676. <a href="http://bugs.librdf.org/mantis/view.php?id=139">Issue #0000139</a>
  677. </p>
  678.  
  679.  
  680. <p>SQLite storage now has a 'synchronous' storage option which takes
  681. values 'off', 'normal' or 'full' allowing access to the sqlite pragma
  682. to control when commits are synchronised to file.
  683. </p>
  684.  
  685.  
  686. <h3>Other changes</h3>
  687.  
  688. <p><code>rdfproc</code> now allows the base URI for parsing to be set
  689. to null with <code>-</code> and adjust messages to handle this.
  690. </p>
  691.  
  692. <p>Added some more const fixes to heuristics.
  693. Fixes
  694. <a href="http://bugs.librdf.org/mantis/view.php?id=107">Issue #0000107</a>
  695. </p>
  696.  
  697. <p>Autodocs for <code>librdf_new_node_from_blank_identifier</code>.
  698. Fixes
  699. <a href="http://bugs.librdf.org/mantis/view.php?id=114">Issue #0000114</a>
  700. </p>
  701.  
  702. <p>If <code>librdf_storage_sqlite_statement_operator_helper</code> fails,
  703. free the stringbuffer.
  704. Fixes
  705. <a href="http://bugs.librdf.org/mantis/view.php?id=116">Issue #0000116</a>
  706. </p>
  707.  
  708. <p>Do not read from stream when parsing returns a NULL pointer.
  709. Fixes
  710. <a href="http://bugs.librdf.org/mantis/view.php?id=130">Issue #0000130</a>
  711. </p>
  712.  
  713. <p>Fix debug call in <code>librdf_query_register_factory</code>,
  714. <code>librdf_storage_hashes_add_remove_statement</code> and
  715. <code>librdf_storage_hashes_contains_statement</code>
  716. Fixes
  717. <a href="http://bugs.librdf.org/mantis/view.php?id=132">Issue #0000132</a>
  718. </p>
  719.  
  720. <p>Added rss2ical.c example to turn RSS/Atom 1.0 feeds into
  721. iCalendar using raptor, redland and SPARQL.
  722. </p>
  723.  
  724. <p>Many minor fixes and changes due to adding lots of -W flags
  725. and using gcc4.
  726. </p>
  727.  
  728.  
  729. <h3>SWIG Bindings Interface</h3>
  730.  
  731. <p>Fixed typo to declare <code>librdf_query_results_get_binding_value</code>
  732. to return a new object.
  733. </p>
  734.  
  735. <p>Export new function <code>librdf_parser_get_accept_header</code>
  736. </p>
  737.  
  738. <p>Export version strings and integer constants for raptor:
  739. (<code>raptor_version_string</code>,
  740. <code>raptor_version_major</code>,
  741. <code>raptor_version_minor</code>,
  742. <code>raptor_version_release</code>,
  743. <code>raptor_version_decimal</code>)
  744. and rasqal
  745. (<code>rasqal_version_string</code>,
  746. <code>rasqal_version_major</code>,
  747. <code>rasqal_version_minor</code>,
  748. <code>rasqal_version_release</code>,
  749. <code>rasqal_version_decimal</code>)
  750. </p>
  751.  
  752.  
  753. <h2 id="rel1_0_4"><a name="rel1_0_4">Redland 1.0.4 Changes</a></h2>
  754.  
  755. <p>The main changes in this release are:</p>
  756.  
  757. <p>Updated to use 
  758. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.12
  759. (<a href="http://librdf.org/rasqal/RELEASE.html#rel0_9_12">Rasqal 0.9.12 release notes</a>)
  760. to update to SPARQL 2006-04-06 for JSON results
  761. </p>
  762.  
  763. <p>Updated to use
  764. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.9
  765. (<a href="http://librdf.org/raptor/RELEASE.html#rel1_4_9">Raptor 1.4.9 release notes</a>)
  766. </p>
  767.  
  768. <p>Plus fixing some crash bugs in parsing and serializing.</p>
  769.  
  770.  
  771. <h3>Configuration and Build Changes</h3>
  772.  
  773. <p>Now using <a href="http://subversion.tigris.org/">Subversion</a>
  774. for version control and the <a href="INSTALL.html">Redland installation instructions</a> explain how to get Redland from Subversion.</p>
  775.  
  776. <p>Win32 fixes and VC build files updates from John Barstow.
  777. </p>
  778.  
  779. <p>Let configure find BDB 4.4</p>
  780.  
  781.  
  782. <h3>Node Class Changes</h3>
  783.  
  784. <p><code>librdf_new_node_from_literal</code>
  785. and <code>librdf_new_node_from_typed_literal</code> now accept empty
  786. strings as an alternative to a NULL language pointer.
  787. </p>
  788.  
  789.  
  790. <h3>Parser Class Changes</h3>
  791.  
  792. <p>Add one more place where it needed handling old and new raptor
  793. statement predicate values
  794. <code>RAPTOR_IDENTIFIER_TYPE_RESOURCE</code> and
  795. <code>RAPTOR_IDENTIFIER_TYPE_PREDICATE</code>.
  796. </p>
  797.  
  798. <p>Fixed a bad uses of flose() causing a crash in parsing a file or
  799. from a <code>FILE*</code> file handle when run under
  800. newer <code>glibc</code>s.
  801. </p>
  802.  
  803.  
  804. <h3>Serializer Class Changes</h3>
  805.  
  806. <p>Fixed a bad uses of flose() causing a crash in serializing to a
  807. file when run under newer <code>glibc</code>s.
  808. </p>
  809.  
  810.  
  811. <h3>Storage Class Changes</h3>
  812.  
  813. <p>Introduced a <code>UINT64_T_FMT</code> to handle formatting a 64-bit
  814. <code>unsigned</code> <code>int</code> in storages
  815. as <code>%llu</code> is not portable.
  816. </p>
  817.  
  818.  
  819. <h2 id="rel1_0_3"><a name="rel1_0_3">Redland 1.0.3 Changes</a></h2>
  820.  
  821. <p>The main changes in this release are:</p>
  822.  
  823. <p>Updated to use 
  824. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.11
  825. (<a href="http://librdf.org/rasqal/RELEASE.html#rel0_9_11">Rasqal 0.9.11 release notes</a>)
  826. to update to SPARQL 2005-11-23
  827. </p>
  828.  
  829. <p>Updated to use
  830. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.8
  831. (<a href="http://librdf.org/raptor/RELEASE.html#rel1_4_8">Raptor 1.4.8 release notes</a>)
  832. </p>
  833.  
  834. <p>A large source re-arrangement was performed for raptor and rasqal
  835. inside redland.  All C sources and headers that build the libraries
  836. were moved to the src dir, general documentation in the doc dir and
  837. utilities in the utils dir for each sub-library.
  838. </p>
  839.  
  840. <p>Version Control change: Redland will be switching to use
  841. <a href="http://subversion.tigris.org/">Subversion</a>
  842. for version control after the 1.0.3 release.  Please check the
  843. <a href="http://svn.librdf.org/">Redland Subversion site</a>
  844. for the latest status or the online
  845. <a href="http://librdf.org/INSTALL.html">Redland installation notes</a>
  846. for the redland specific subversion installation information.
  847. </p>
  848.  
  849. <p>A new PostgreSQL storage backend was added
  850. contributed by Shi Wenzhong based on the MySQL storage backend.
  851. Fixes <a href="http://bugs.librdf.org/mantis/view.php?id=46">issue #0000046</a>
  852. </p>
  853.  
  854.  
  855. <h3>Configuration Changes</h3>
  856.  
  857. <p>The autogen.sh script for building from CVS was revamped to be
  858. more modular.</p>
  859.  
  860. <p><code>configure</code> now takes an <code>--enable-gtk-doc</code>
  861. option to enable building of the documentation using the
  862. <code>gtk-doc</code> utility.  It is by default enabled only if the
  863. utility is available.
  864. </p>
  865.  
  866.  
  867. <h3>Documentation Changes</h3>
  868.  
  869. <p>The GNOME <code>gtk-doc</code> program is now used to
  870. automatically extract documentation from source comments into
  871. reference documentation.  This is then merged with templates and
  872. additional documentation to provide a reference manual for redland
  873. as XML document which is turned into HTML along with GNOME devhelp
  874. support.</p>
  875.  
  876. <h3>Portability Changes</h3>
  877.  
  878. <p>Some win32 build fixes were made.</p>
  879.  
  880. <h3>World Class Changes</h3>
  881.  
  882. <p><code>librdf_world_get_genid()</code> was changed to include the
  883. process ID in the generated blank ID.
  884. Fixes <a href="http://bugs.librdf.org/mantis/view.php?id=37">Issue #0000037</a>
  885. (patch from Marc Powell).
  886. </p>
  887.  
  888. <h3>Node Class changes</h3>
  889.  
  890. <p><code>librdf_node_encode()</code>: Give an error when a node cannot
  891. be encoded due to string data being too long.
  892. </p>
  893.  
  894.  
  895. <h3>Serializer Class changes</h3>
  896.  
  897. <p>Added <code>librdf_serializer_serialize_model_to_iostream()</code>, not
  898. exposed in the SWIG bindings.
  899. </p>
  900.  
  901.  
  902. <h3>Storage Class Changes</h3>
  903.  
  904. <p>Added a PostgreSQL storage backend contributed by Shi Wenzhong
  905. based on the MySQL storage backend.
  906. Fixes <a href="http://bugs.librdf.org/mantis/view.php?id=46">Issue #0000046</a>
  907. </p>
  908.  
  909.  
  910. <h3>Other Changes</h3>
  911.  
  912. <p>Deprecated <code>librdf_files_temporary_file_name()</code>.</p>
  913.  
  914. <p>Deleted some function prototypes defined in headers but never had
  915. code: 
  916. <code>librdf_node_init()</code>,
  917. <code>librdf_iterator_finished()</code>,
  918. <code>librdf_storage_get()</code> and
  919. <code>librdf_world_set_uris_hash()</code>
  920. </p>
  921.  
  922. <p>Added examples/example7.c to read from an RDF/XML file, add a
  923. triple and write it back.</p>
  924.  
  925.  
  926.  
  927. <h2 id="rel1_0_2"><a name="rel1_0_2">Redland 1.0.2 Changes</a></h2>
  928.  
  929. <p>The changes in this release are:</p>
  930.  
  931. <ul>
  932. <li>Fix a crash when querying or searching with the model
  933. find_statements method and getting no results</li>
  934.  
  935. <li>Update to use 
  936. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.10
  937. (<a href="http://librdf.org/rasqal/RELEASE.html#rel0_9_10">Rasqal 0.9.10 release notes</a>)
  938. to provide query results sorting such as SPARQL <code>ORDER BY</code>
  939. and some SPARQL syntax updates.
  940. </li>
  941.  
  942. <li>Update to use
  943. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.7
  944. (<a href="http://librdf.org/raptor/RELEASE.html#rel1_4_7">Raptor 1.4.7 release notes</a>)
  945. to fix some crashes in the RSS tag soup parser and serializer.
  946. </li>
  947. </ul>
  948.  
  949.  
  950. <h2 id="rel1_0_1"><a name="rel1_0_1">Redland 1.0.1 Changes</a></h2>
  951.  
  952. <p>The main changes in this release are to update to use 
  953. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.9
  954. (<a href="http://librdf.org/rasqal/RELEASE.html#rel0_9_9">Rasqal 0.9.9 release notes</a>)
  955. to provide improved SPARQL query support for the revised syntax
  956. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.6 
  957. (<a href="http://librdf.org/raptor/RELEASE.html#rel1_4_6">Raptor 1.4.6 release notes</a>)
  958. to
  959. provide a new GRDDL parser as well as updated RSS enclosures support
  960. with the RSS tag soup parser and RSS 1.0 serializer.
  961. </p>
  962.  
  963. <p>The digest and hash classes now expose public API constructors,
  964. destructors and methods via their header files.</p>
  965.  
  966.  
  967. <h3>Configuration changes</h3>
  968.  
  969. <p>Added <code>--with-memory-signing</code> to check when memory is
  970. allocated / freed across Redland libraries.
  971. </p>
  972.  
  973.  
  974. <h3>Portability Fixes</h3>
  975.  
  976. <p>Added Win32 portability fixes and build configuration (John Barstow)</p>
  977.  
  978.  
  979. <h3>Binding API changes</h3>
  980.  
  981. <p>The following changes were made to the bindings API as
  982. exported by the SWIG interface file <code>Redland.i</code>:</p>
  983.  
  984. <p>The digest class was added:
  985. constructor <code>librdf_new_digest</code>, 
  986. destructor <code>librdf_free_digest</code>
  987. and methods <code>librdf_digest_init</code>, 
  988. <code>librdf_digest_update</code>, 
  989. <code>librdf_digest_update_string</code>, 
  990. <code>librdf_digest_final</code> and
  991. <code>librdf_digest_to_string</code>,.
  992. </p>
  993.  
  994. <p>The hash class was added as selected functions:
  995. constructors <code>librdf_new_hash_from_string</code> and
  996. <code>librdf_new_hash_from_array_of_strings</code> and destructor
  997. <code>librdf_free_hash</code>.
  998. </p>
  999.  
  1000. <p>The query class methods
  1001. <code>librdf_query_get_limit</code>,
  1002. <code>librdf_query_set_limit</code>,
  1003. <code>librdf_query_get_offset</code> and
  1004. <code>librdf_query_set_offset</code> were added.
  1005. </p>
  1006.  
  1007. <p>Functions were added for accessing parts of structured log messages
  1008. as <code>librdf_log_message</code> objects:
  1009. <code>librdf_log_message_code</code>, 
  1010. <code>librdf_log_message_level</code>, 
  1011. <code>librdf_log_message_facility</code>, 
  1012. <code>librdf_log_message_message</code>, 
  1013. <code>librdf_log_message_locator</code>
  1014. and <a href="http://librdf.org/raptor/">Raptor</a> <code>raptor_locator</code>
  1015. objects:
  1016. <code>raptor_locator_line</code>, 
  1017. <code>raptor_locator_column</code>, 
  1018. <code>raptor_locator_byte</code>, 
  1019. <code>raptor_locator_file</code> and
  1020. <code>raptor_locator_uri</code>.
  1021. </p>
  1022.  
  1023.  
  1024. <h3>Digest Class changes</h3>
  1025.  
  1026. <p>This class was added to the public API in this release adding
  1027. constructor <code>librdf_new_digest</code>,
  1028. destructor <code>librdf_free_digest</code>
  1029. and methods
  1030. <code>librdf_digest_init</code>,
  1031. <code>librdf_digest_update</code>,
  1032. <code>librdf_digest_update_string</code>,
  1033. <code>librdf_digest_final</code>,
  1034. <code>librdf_digest_get_digest</code>,
  1035. <code>librdf_digest_get_digest_length</code>,
  1036.  
  1037. <code>librdf_digest_to_string</code> and
  1038. <code>librdf_digest_print</code>
  1039. </p>
  1040.  
  1041.  
  1042. <h3>Hash Class changes</h3>
  1043.  
  1044. <p>This class was added to the public API in this release adding
  1045. constructors
  1046. <code>librdf_new_hash_from_string</code>, 
  1047. <code>librdf_new_hash_from_array_of_strings</code> and
  1048. <code>librdf_new_hash_from_hash</code>;
  1049. destructor
  1050. <code>librdf_free_hash</code>;
  1051. and methods
  1052. <code>librdf_hash_get</code>, 
  1053. <code>librdf_hash_get_as_boolean</code>, 
  1054. <code>librdf_hash_get_as_long</code>, 
  1055. <code>librdf_hash_get_del</code>, 
  1056. <code>librdf_hash_put_strings</code>, 
  1057. <code>librdf_hash_print</code>, 
  1058. <code>librdf_hash_print_keys</code> and
  1059. <code>librdf_hash_print_values</code>.
  1060. </p>
  1061.  
  1062.  
  1063. <h3>Iterator Class changes</h3>
  1064.  
  1065. <p>Added a <code>librdf_new_empty_iterator</code> helper to make an
  1066. always-empty iterator.</p>
  1067.  
  1068.  
  1069. <h3>Log Class changes</h3>
  1070.  
  1071. <p>Added <code>LIBRDF_FROM_MEMORY</code> facility.</p>
  1072.  
  1073.  
  1074. <h3>Model Class changes</h3>
  1075.  
  1076. <p>All methods returning an <code>librdf_iterator</code> or
  1077. <code>librdf_stream</code> now return an empty iterator/stream rather
  1078. than NULL when returning an empty result sequence.  Errors are still
  1079. returned as NULL.</p>
  1080.  
  1081.  
  1082. <h3>Node Class changes</h3>
  1083.  
  1084. <p>Removed unused <code>LIBRDF_NODE_TYPE_RESERVED1</code> (#3) from
  1085. <code>librdf_node_type</code> enum.</p>
  1086.  
  1087.  
  1088. <h3>Query Class changes</h3>
  1089.  
  1090. <p>Update to use Rasqal 0.9.9 API.  Redland 1.0.1 will not build with
  1091. older Rasqal releases.</p>
  1092.  
  1093. <p>The query API gains methods <code>librdf_query_get_limit</code>,
  1094. <code>librdf_query_set_limit</code>,
  1095. <code>librdf_query_get_offset</code> and
  1096. <code>librdf_query_set_offset</code> for setting and getting query
  1097. result limit (max results) and offsets (result to start from).</p>
  1098.  
  1099. <p>Fixed some across-library memory allocation/frees between redland
  1100. and rasqal that caused problems on win32. Requires rasqal 0.9.9 or
  1101. newer.</p>
  1102.  
  1103.  
  1104. <h3>Stream Class changes</h3>
  1105.  
  1106. <p>Added a <code>librdf_new_empty_strea</code> helper to make an
  1107. always-empty strea.</p>
  1108.  
  1109.  
  1110. <h3>Storage Class changes</h3>
  1111.  
  1112. <p>The MySQL store now uses a portable method across endiannesses to
  1113. create a 64bit key.  This fixes 
  1114. <a href="http://bugs.librdf.org/mantis/view.php?id=23">Issue #0000023</a>
  1115. (Morten Frederiksen)</p>
  1116.  
  1117. <blockquote><p><strong>NOTE: This matches the algorithm used for
  1118. little-endian systems but big-endian stores will need to serialize
  1119. the store before upgrading and reload afterwards.</strong></p></blockquote>
  1120.  
  1121. <p>The MySQL store now uses connection pooling to prevent making a new
  1122. connection to the database for each request.
  1123. Fixes <a href="http://bugs.librdf.org/mantis/view.php?id=27">Issue #0000027</a>
  1124. (Morten Frederiksen)
  1125. </p>
  1126.  
  1127. <p>The SQLite store now does not skip items with the factory methods
  1128. for serializing, finding statements, serializing contexts and getting
  1129. context statements.
  1130. Fixes <a href="http://bugs.librdf.org/mantis/view.php?id=6">Issue #0000006</a>
  1131. </p>
  1132.  
  1133. <p>All store methods that return an <code>librdf_iterator</code> or
  1134. <code>librdf_stream</code> now return an empty iterator/stream rather
  1135. than NULL when returning an empty result sequence.  Errors are still
  1136. returned as NULL.</p>
  1137.  
  1138.  
  1139. <h3>Other changes</h3>
  1140.  
  1141. <p>Added <code>REDLAND_INLINE</code> macro, which can be overridden if
  1142. inline is not wanted.</p>
  1143.  
  1144.  
  1145. <h2 id="rel1_0_0"><a name="rel1_0_0">Redland 1.0.0 Changes</a></h2>
  1146.  
  1147. <p>This is Redland 1.0.0.</p>
  1148.  
  1149. <p>The main changes in this release are to update to use 
  1150. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.6
  1151. to provide improved SPARQL query support for optionals, CONSTRUCT, ASK, builtins,
  1152. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.4 to
  1153. provide better serializing to RDF/XML and RSS 1.0 and better
  1154. RSS tag soup parsing and
  1155. a new experimental <a href="http://www.sqlite.org/">SQLite</a>
  1156. storage supporting SQLite V2 and V3 libraries.
  1157. </p>
  1158.  
  1159.  
  1160. <h3>Configuration changes</h3>
  1161.  
  1162. <p>The storages compiled into redland can be individually selected
  1163. with the <code>--enable-storages=</code><em>LIST</em> configure
  1164. option.
  1165. </p>
  1166.  
  1167. <p>The default for <code>--with-dmalloc</code> is now no.  Reason:
  1168. <a href="http://valgrind.kde.org/">valgrind</a>.</p>
  1169.  
  1170.  
  1171. <h3>Portability Fixes</h3>
  1172.  
  1173. <p>Removed configure altering the search PATH - which was a bad idea
  1174. as it makes the configure environment different from the user's.</p>
  1175.  
  1176. <p>Added <code>/opt/local</code> to the BerkeleyDB / SleepycatDB
  1177. search path to help darwinports.</p>
  1178.  
  1179. <p>To help Redland built as an OSX Framework with ObjectiveC, Redland
  1180. public headers can be put in a different directory structure if
  1181. <code>LIBRDF_OBJC_FRAMEWORK</code> is defined in the build
  1182. environment.  In this case the headers are found in a subdirectory
  1183. <code>Redland</code>.  This only applies to the public Redland header
  1184. files that <code>#include</code> other public header files -
  1185. <code>redland.h</code> including <code>librdf.h</code>,
  1186. <code>librdf.h</code> including several <code>rdf_*.h</code> files
  1187. and Rasqal's <code>rasqal.h</code> including
  1188. <code>raptor.h</code>. (Patch from Ren├⌐ Puls)
  1189. </p>
  1190.  
  1191.  
  1192. <h3><code>rdfproc</code> RDF processor utility program changes</h3>
  1193.  
  1194. <p>Added a <code>size</code> command calling
  1195. <code>librdf_model_size</code>.</p>
  1196.  
  1197.  
  1198. <h3>Model Class changes</h3>
  1199.  
  1200. <p>Added <code>librdf_model_contains_context</code> to find a context
  1201. node in a model.</p>
  1202.  
  1203. <p>The <code>librdf_model_sync</code> now returns a success or failure
  1204. int.</p>
  1205.  
  1206.  
  1207. <h3>Parser Class Changes</h3>
  1208.  
  1209. <p>Updated to <a href="http://librdf.org/raptor/">Raptor</a> 1.4.4
  1210. providing an updated RSS tag soup parser with fixes for RSS 0.9,
  1211. RSS.1.1 and Atom.</p>
  1212.  
  1213. <p>The constructor now finds the correct parser when given NULL
  1214. arguments for mime type or type URI.</p>
  1215.  
  1216.  
  1217. <h3>Query Class changes</h3>
  1218.  
  1219. <p>Update to <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.5
  1220. providing improved SPARQL support: new optionals handling,
  1221. <code>CONSTRUCT</code> to make RDF graphs, formatting of query
  1222. results in the SPARQL XML format along with many other improvements
  1223. and fixes.</p>
  1224.  
  1225.  
  1226. <p>Added base_uri argument to <code>librdf_new_query</code></p>
  1227.  
  1228. <p>Added
  1229. <code>librdf_query_results_to_counted_string</code>,
  1230. <code>librdf_query_results_to_string</code>,
  1231. <code>librdf_query_results_to_file_handle</code> and
  1232. <code>librdf_query_results_to_file</code>
  1233. to get the results of a query written to a syntax using
  1234. Rasqal's rasqal_query_results_write and Raptor's XML writer API.
  1235. </p>
  1236.  
  1237. <p>Added boolean returning methods:
  1238. <code>librdf_query_results_is_bindings</code>,
  1239. <code>librdf_query_results_is_boolean</code>,
  1240. <code>librdf_query_results_is_graph</code> for testing result formats
  1241. and <code>librdf_query_results_get_boolean</code> to get a boolean
  1242. result back.</p>
  1243.  
  1244.  
  1245.  
  1246. <h3>Serializer Class changes</h3>
  1247.  
  1248. <p>Updated to <a href="http://librdf.org/raptor/">Raptor</a> 1.4.4
  1249. providing a new XML writer API, an improved RDF/XML serializer
  1250. allowing user namespace declarations and relative URIs, a new RSS 1.0
  1251. serializer.</p>
  1252.  
  1253. <p>The serializers now respect any user-declared namespaces done with
  1254. <code>librdf_serializer_set_namespace</code> by passing it on to the
  1255. Raptor serializer with <code>raptor_serialize_set_namespace</code>.
  1256. At present only the Raptor RDF/XML serializer uses these
  1257. user-declared namespace hints.
  1258. </p>
  1259.  
  1260. <p>The constructor now finds the correct serializer when given NULL
  1261. arguments for mime type or type URI.</p>
  1262.  
  1263.  
  1264. <h3>Storage Class changes</h3>
  1265.  
  1266. <p>The storages compiled into redland can be individually selected
  1267. with the <code>--enable-storages=</code><em>LIST</em> configure option.
  1268. </p>
  1269.  
  1270. <p>SQLite Storage.  A new experimental storage supporting
  1271. <a href="http://www.sqlite.org/">SQLite</a> V2 and V3 libraries.
  1272. </p>
  1273.  
  1274. <p>MySQL storage.  Return failure early if the connection failed
  1275. rather than try to continue opening the storage.</p>
  1276.  
  1277. <p>MySQL storage.  Only use <code>mysql_real_escape_string</code> if
  1278. a connection was made.  Do not try to free resources such as the
  1279. mysql DB connection owned by iterators after an error, let
  1280. <code>librdf_free_iterator</code> tidy up. (Patch from Morten
  1281. Frederiksen)</p>
  1282.  
  1283.  
  1284. <h3>URI Class changes</h3>
  1285.  
  1286. <p>Handle resolving against a base URI with an omitted path.</p>
  1287.  
  1288.  
  1289. <h3>Other changes</h3>
  1290.  
  1291. <p>Removed <code>librdf_concept_labels</code> - never used or
  1292. exported.</p>
  1293.  
  1294.  
  1295.  
  1296. <h2 id="rel0_9_19"><a name="rel0_9_19">Redland 0.9.19 Changes</a></h2>
  1297.  
  1298. <p>This is Redland 1.0 Release Candidate 2.</p>
  1299.  
  1300. <p>Redland's License was changed from LGPL 2.1/MPL 1.1 to
  1301. LGPL 2.1/Apache 2</p>
  1302.  
  1303. <p>The main changes in this release are to update to use 
  1304. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.5
  1305. to provide initial SPARQL query support and to use
  1306. <a href="http://librdf.org/raptor/">Raptor</a> 1.4.2 to
  1307. provide serializing to RDF/XML and N-Triples.</p>
  1308.  
  1309.  
  1310. <h3><code>rdfproc</code> RDF processor utility program changes</h3>
  1311.  
  1312. <p>Updated to allow an optional base URI for the
  1313. <code>serialize</code> command and to handle the three forms
  1314. of query results - bindings, graph or boolean.</p>
  1315.  
  1316.  
  1317. <h3>Model Class changes</h3>
  1318.  
  1319. <p>Added <code>librdf_model_to_string</code> and
  1320. <code>librdf_model_to_counted_string</code> to serialize a model to a
  1321. string using the Serializer class functionality.  Exported
  1322. <code>librdf_model_to_string</code> to the language bindings.</p>
  1323.  
  1324.  
  1325. <h3>Query Class changes</h3>
  1326.  
  1327. <p>Now requires
  1328. <a href="http://librdf.org/rasqal/">Rasqal</a> 0.9.5
  1329. which provides initial support for the
  1330. <a href="http://www.w3.org/TR/2004/WD-rdf-sparql-query-20041012/">
  1331. SPARQL Query Language for RDF</a>,
  1332. W3C Working Draft, 12 October 2004
  1333. from the W3C RDF Data Access Working Group (DAWG).</p>
  1334.  
  1335.  
  1336. <h3>Serializer Class changes</h3>
  1337.  
  1338. <p>Pass on errors and warnings via the existing Redland logging
  1339. mechanism.  Previously they all went to stderr, the default.</p>
  1340.  
  1341. <p>Switched to use <a href="http://librdf.org/raptor/">Raptor</a> 1.4
  1342. series serializing classes so now provides RDF/XML and N-Triples
  1343. serializing and will gain any fugure serializing formats as Raptor
  1344. adds them.</p>
  1345.  
  1346. <p>Using the Raptor support, the serializers can now serialize to
  1347. strings in addition to the existing serializing to FILE* and files.
  1348. This is performed by the new methods:
  1349. <code>librdf_serializer_serialize_model_to_file_handle</code>
  1350. (deprecating <code>librdf_serializer_serialize_model</code>),
  1351. <code>librdf_serializer_serialize_model_to_string</code>
  1352. and <code>librdf_serializer_serialize_model_to_counted_string</code>.
  1353. Exported <code>librdf_serializer_serialize_model_to_string</code>
  1354. to the language bindings.</p>
  1355.  
  1356.  
  1357. <h3>Storage Class changes</h3>
  1358.  
  1359. <p><code>librdf_storage_context_add_statement</code> and
  1360. <code>librdf_storage_context_add_statements</code> - 
  1361. With a NULL context, call the non-context method as documented.</p>
  1362.  
  1363. <p>Fixed bogus '+' in <code>get_contexts</code> method in the mysql
  1364. storage.</p>
  1365.  
  1366.  
  1367. <h3>World Class changes</h3>
  1368.  
  1369. <p><code>librdf_world_get_feature</code> now returns a
  1370. <code>librdf_node*</code>, <code>librdf_world_set_feature</code>
  1371. takes a <code>librdf_node*</code> value.  Export these to
  1372. the language bindings.
  1373. </p>
  1374.  
  1375.  
  1376.  
  1377. <h2 id="rel0_9_18"><a name="rel0_9_18">Redland 0.9.18 Changes</a></h2>
  1378.  
  1379. <p>Revert the statement class usage counting - it broke things.</p>
  1380.  
  1381.  
  1382. <h2 id="rel0_9_17"><a name="rel0_9_17">Redland 0.9.17 Changes</a></h2>
  1383.  
  1384. <p>This is Redland 1.0 Release Candidate 1.</p>
  1385.  
  1386. <p>The main changes in this release are the addition of the
  1387. <a href="docs/api/query.html">Query</a> and
  1388. <a href="docs/api/query_results.html">Query Results</a> classes, and
  1389. the removal of the language bindings into the new
  1390. <a href="http://librdf.org/bindings/">Redland Bindings</a>
  1391. package.
  1392. </p>
  1393.  
  1394. <p>The interface between the Redland library and Redland Bindings
  1395. when done via <a href="http://www.swig.org/">swig</a> is by the
  1396. swig interface file <code>Redland.i</code> which is now installed in
  1397. <code>/usr/share/redland/Redland.i</code>.</p>
  1398.  
  1399.  
  1400. <h3>Portability changes</h3>
  1401.  
  1402. <p>Several patches for building Redland natively on Win32 
  1403. were provided by Jose Kahan.  These included
  1404. adding an <code>win32_rdf_config.h</code> hard-coded config
  1405. for Win32, using that in the all the C source files and adding an
  1406. <code>REDLAND_STATIC</code> define to help statically linking Win32
  1407. builds of Redland.
  1408. </p>
  1409.  
  1410.  
  1411. <h3>Configuration changes</h3>
  1412.  
  1413. <p>Redland 0.9.17 requires Raptor 1.3.2 and Rasqal 0.9.1.  Installed
  1414. versions are used if available by default, otherwise the copies in
  1415. the source tree will be used.  The
  1416. <code>--with-raptor=</code> and
  1417. <code>--with-rasqal=</code> configure options with
  1418. values <code>internal</code> or <code>system</code> can be
  1419. used to select when both are available.
  1420. </p>
  1421.  
  1422. <p>Removed all the language binding-specific configuration code
  1423. including options such as <code>--with-perl</code> that are now used
  1424. by Redland Bindings.</p>
  1425.  
  1426.  
  1427. <h3>Packaging changes</h3>
  1428.  
  1429. <p>Updated the RPM spec file to remove building of the redland-perl
  1430. and redland-python RPMs which are now made in the redland-bindings
  1431. package.</p>
  1432.  
  1433. <p>Added <code>-lrdf</code> to the pkgconfig redland.pc file (Curtis Hovey)</p>
  1434.  
  1435. <p>Redland requires automake 1.7 and autoconf 2.54 to build from CVS.</p>
  1436.  
  1437.  
  1438. <h3>Query and Query Result Classes</h3>
  1439.  
  1440. <p>The <a href="docs/api/query.html">Query</a>
  1441. (<code>librdf_query</code>) and
  1442. <a href="docs/api/query_results.html">Query Results</a>
  1443. (<code>librdf_query_results</code>) classes are new in Redland 0.9.17.
  1444. They provide RDF query support with 
  1445. <a href="http://www.w3.org/Submission/2004/SUBM-RDQL-20040109/">RDQL</a>
  1446. using <a href="http://librdf.org/rasqal/">Rasqal</a>
  1447. 0.9.1, which is now included in the Redland distribution.</p>
  1448.  
  1449. <p>The Query class has the following functions and methods:</p>
  1450. <ul>
  1451. <li><code>librdf_new_query</code> (constructor)</li>
  1452. <li><code>librdf_new_query_from_query</code> (constructor)</li>
  1453. <li><code>librdf_new_query_from_factory</code> (factory constructor)</li>
  1454. <li><code>librdf_free_query</code> (destructor)</li>
  1455. <li><code>librdf_query_execute</code></li>
  1456. </ul>
  1457.  
  1458. <p>The Query Results class has the following methods:</p>
  1459. <ul>
  1460. <li><code>librdf_query_results_as_stream</code></li>
  1461. <li><code>librdf_query_results_get_count</code></li>
  1462. <li><code>librdf_query_results_next</code></li>
  1463. <li><code>librdf_query_results_finished</code></li>
  1464. <li><code>librdf_query_results_get_bindings</code></li>
  1465. <li><code>librdf_query_results_get_binding_value</code></li>
  1466. <li><code>librdf_query_results_get_binding_name</code></li>
  1467. <li><code>librdf_query_results_get_binding_value_by_name</code></li>
  1468. <li><code>librdf_query_results_get_bindings_count</code></li>
  1469. <li><code>librdf_free_query_results</code> (destructor)</li>
  1470. </ul>
  1471.  
  1472.  
  1473. <p>A new example example5.c was created to demonstrate using the
  1474. query classes.</p>
  1475.  
  1476.  
  1477. <h3>New Logging API</h3>
  1478.  
  1479. <p>An enhanced logging API was added to provide enhanced information
  1480. from log messages, error and warnings such as from parsing.  The new
  1481. world method <code>librdf_world_set_logger</code> allows setting of
  1482. the log handler callback which gives a
  1483. <code>librdf_log_message</code>.  Parts of this the structure can be
  1484. read by using the following new accessors methods:
  1485. </p>
  1486.  
  1487. <ul>
  1488. <li><code>librdf_log_message_code</code></li>
  1489. <li><code>librdf_log_message_level</code></li>
  1490. <li><code>librdf_log_message_facility</code></li>
  1491. <li><code>librdf_log_message_message</code></li>
  1492. <li><code>librdf_log_message_locator</code></li>
  1493. </ul>
  1494.  
  1495. <p>The locator returns an <code>raptor_locator</code> that gives the
  1496. line, column, byte offset, URI and/or filename of the message.
  1497. Raptor 1.3.2+ provides accessor methods for that structure
  1498. that are described in 
  1499. <a href="http://librdf.org/raptor/libraptor.html">libraptor.3</a>.</p>
  1500.  
  1501.  
  1502. <h3>Model Class changes</h3>
  1503.  
  1504. <p>Check that duplicate statements are not added to models with the
  1505. <code>librdf_model_add_statement</code> and
  1506. <code>librdf_model_add_statements</code> methods.  The methods for
  1507. adding statements with a context do not check.
  1508. </p>
  1509.  
  1510. <p>Added <code>librdf_model_query_execute</code> method to execute a
  1511. <code>librdf_query</code> against a model, returning an
  1512. <code>librdf_query_results</code></p>
  1513.  
  1514. <p>Added <code>librdf_model_load</code> method that uses Raptor
  1515. parser guessing to load content from a URI into a model.</p>
  1516.  
  1517. <p>The contexts methods now give a run time warning if called when
  1518. the model does not support contexts or the are not enabled.  The
  1519. methods affected are:</p>
  1520. <ul>
  1521. <li><code>librdf_model_context_add_statement</code></li>
  1522. <li><code>librdf_model_context_add_statements</code></li>
  1523. <li><code>librdf_model_context_as_stream</code></li>
  1524. <li><code>librdf_model_context_remove_statement</code></li>
  1525. <li><code>librdf_model_context_remove_statements</code></li>
  1526. <li><code>librdf_model_context_serialize</code></li>
  1527. <li><code>librdf_model_find_statements_in_context</code></li>
  1528. <li><code>librdf_model_get_contexts</code></li>
  1529. </ul>
  1530.  
  1531. <p>Fixed a memory leak
  1532. inside <code>librdf_model_find_statements_in_context</code>.
  1533. </p>
  1534.  
  1535.  
  1536. <h3>Node Class changes</h3>
  1537.  
  1538. <p>Fix assert bug in <code>librdf_node_get_blank_identifier</code>
  1539. that caused it to always fail.</p>
  1540.  
  1541. <p>A bug was fixed in <code>librdf_node_get_li_ordinal</code>
  1542. to not always fail, returning -1</p>
  1543.  
  1544.  
  1545. <h3>Parser Class changes</h3>
  1546.  
  1547. <p>Deprecated methods <code>librdf_parser_set_error</code> and 
  1548. <code>librdf_parser_set_warning</code> which never worked.  The
  1549. new logging API works correctly with this code.</p>
  1550.  
  1551. <h3>Storage Class changes</h3>
  1552.  
  1553. <p>Where possible, check that duplicate statements are not added to
  1554. stores with the <code>librdf_storage_add_statement</code> and
  1555. <code>librdf_storage_add_statements</code> methods.  The methods for
  1556. adding statements with a context do not check.
  1557. </p>
  1558.  
  1559. <p>The "mysql" storage was updated by
  1560. <a href="http://purl.org/net/morten/">Morten Frederiksen</a>
  1561. to revise the schema and to add two new features,
  1562. controlled by new boolean storage options:</p>
  1563. <ol>
  1564. <li><code>bulk</code>: whether model/storage method add_statements
  1565. should be optimized, until a model/storage sync operation</li>
  1566. <li><code>merge</code>: whether to maintain a table with merged models</li>
  1567. </ol>
  1568.  
  1569. <p>Context methods will now give a run time warning if called and
  1570. contexts are not supported or enabled.  The methods affected are:</p>
  1571. <ul>
  1572. <li><code>librdf_storage_context_add_statement</code></li>
  1573. <li><code>librdf_storage_context_remove_statement</code></li>
  1574. <li><code>librdf_storage_context_serialise</code></li>
  1575. <li><code>librdf_storage_get_contexts</code></li>
  1576. </ul>
  1577.  
  1578. <p>Fixed a memory leak
  1579. inside <code>librdf_storage_find_statements_in_context</code>.
  1580. </p>
  1581.  
  1582. <p>A bug was fixed in method
  1583. <code>librdf_storage_node_stream_to_node_create</code> to allow the
  1584. second node parameter to be NULL, so that methods
  1585. <code>librdf_storage_get_arcs_out</code> and
  1586. <code>librdf_storage_get_arcs_in</code> that can use it to work.</p>
  1587.  
  1588.  
  1589.  
  1590. <h2 id="rel0_9_16"><a name="rel0_9_16">Redland 0.9.16 Changes</a></h2>
  1591.  
  1592. <p>A small but important fix to make the installed C headers work
  1593. correctly again.  The rdf_uri.h file had <code>#include
  1594. rdf_digest.h</code> which is an internal header and not installed.
  1595. This required removing two functions from the public API that
  1596. returned <code>librdf_digest*</code>, but neither of them could be
  1597. used since rdf_digest.h was not shipped.</p>
  1598.  
  1599. <p>Patched librdf.h and raptor.h to <code>#include stdio.h</code> so
  1600. that the empty program <code>#include <redland.h></code>
  1601. <code>main() {}</code> now works (ditto for raptor). </p>
  1602.  
  1603.  
  1604. <h2 id="rel0_9_15"><a name="rel0_9_15">Redland 0.9.15 Changes</a></h2>
  1605.  
  1606. <p>This version of Redland updates to use
  1607. <a href="http://librdf.org/raptor/">Raptor</a>
  1608. 1.2.0 (<a href="http://librdf.org/raptor/NEWS.html">raptor news</a>)
  1609. along with the new syntax
  1610. <a href="http://www.dajobe.org/2004/01/turtle/">Turtle Terse RDF Triple Language</a>.
  1611. </p>
  1612.  
  1613. <p>Three new storage modules were added:</p>
  1614. <ol>
  1615. <li><a href="http://www.mysql.com/">MySQL</a> store written by <a href="http://purl.org/net/morten/">Morten Frederiksen</a> supporting the entire storage API include full contexts support.</li>
  1616. <li><a href="http://triplestore.aktors.org/">AKT Triplestore</a> using MySQL inside 3store</li>
  1617. <li>File and URI-backed in-memory store - read/write file, read only URI.</li>
  1618. </ol>
  1619.  
  1620. <p>The details of these modules are explained in much greater detail
  1621. in the <a href="docs/storage.html">storage modules overview</a>
  1622. including the features that they support.
  1623. </p>
  1624.  
  1625. <p>The runtime is now compiled with assertions to check for illegal
  1626. use of NULL pointers in arguments, these will give warning messages
  1627. (which can be disabled with <code>--disable-assert-messages</code>).
  1628. The storage and model classes now track when open iterator and
  1629. streams are operating on them and will not release resources until
  1630. all the open iterators and streams are finished.
  1631. </p>
  1632.  
  1633.  
  1634. <h3>URI and Literal string type changes</h3>
  1635.  
  1636. <p>There are many changes are to properly use and return UTF-8
  1637. strings as <code>unsigned char*</code> for URIs (looking forward to
  1638. Internationalized Resource Identifiers, IRIs emerging) and for RDF
  1639. literal strings, plus other fixes to work better with C++ correcting
  1640. the use of <code>const</code>.  Redland and Raptor now both compile
  1641. cleanly with g++ 3.2, 3.3 and all warnings enabled.</p>
  1642.  
  1643.  
  1644. <h3><code>rdfproc</code> RDF processor utility program changes</h3>
  1645.  
  1646. <p><a href="utils/rdfproc.html">rdfproc</a> was extensively updated
  1647. and it can now more easily work with any type of Redland store and
  1648. has better support for working with contexts. The detailed changes
  1649. are as follows:</p>
  1650.  
  1651. <ul>
  1652. <li>Added an -s TYPE option to specify a storage type</li>
  1653. <li>Added an -t option for giving storage options</li>
  1654. <li>Added an -p option to read the value of
  1655. storage option <code>password</code> from standard input, to prevent
  1656. exposing it as a parameter.</li>
  1657. <li>The default of creating a new store was
  1658. replaced; -n enables truncation or overwriting (the
  1659. <code>write=yes</code> storage option).</li>
  1660. <li> Now recognises <code>_:</code><em>abc</em> as blank node arguments.</li>
  1661. <li>Parsing now return counts of errors and warnings if possible.</li>
  1662. <li>The parse-stream command can take an optional context node</li>
  1663. <li>Added a contexts command, to list the contexts in a model.</li>
  1664. <li>Added support for environment variables RDFPROC_STORAGE_OPTIONS and
  1665. RDFPROC_STORAGE_TYPE to provide default storage options (-t) and type (-s)</li>
  1666. <li>Help message updated and correctly lists supported parsers</li>
  1667. </ul>
  1668.  
  1669.  
  1670. <h3>Configuration changes</h3>
  1671.  
  1672. <p>Redland 0.9.15 requires Raptor 1.2.0 either installed otherwise
  1673. the copy in the source tree will be installed.</p>
  1674.  
  1675. <p><code>--with-mysql=</code><em>CONFIG</em> added to point to the
  1676. mysql_config program for the MySQL backing store
  1677. </p>
  1678.  
  1679. <p><code>--with-threestore</code> added to enable the
  1680. AKT Triplestore
  1681. </p>
  1682.  
  1683. <p><code>--disable-assert</code> added to disable
  1684. compiling run-time assertions.
  1685. </p>
  1686.  
  1687. <p><code>--disable-assert-messages</code> added to disable
  1688. compiling run-time assertion messages.
  1689. </p>
  1690.  
  1691.  
  1692. <h3>Packaging changes</h3>
  1693.  
  1694. <p>A redland-python RPM package is now provided and the default RPM
  1695. packaging now provides the MySQL store, in addition to the in-memory
  1696. and BDB previously packaged.  The new file and uri stores are also
  1697. available.  The full list of store modules is described further in the
  1698. <a href="docs/storage.html">storage modules overview</a>.</p>
  1699.  
  1700.  
  1701. <h3>Model Class changes</h3>
  1702.  
  1703. <p>Methods
  1704. <code>librdf_model_add_string_literal_statement</code> and
  1705. <code>librdf_model_add_typed_literal_statement</code>
  1706. now take a <code>const unsigned char* string</code>.
  1707. Method
  1708. <code>librdf_model_query_string</code> now takes
  1709. a <code>const unsigned char* string</code> query.
  1710. </p>
  1711.  
  1712. <p>New methods were added
  1713. <code>librdf_model_find_statements_in_context</code>
  1714. to search for a statement matching only in a particular context,
  1715. <code>librdf_model_find_statements_with_options</code> to
  1716. allow options with searching (none used at present),
  1717. and <code>librdf_model_get_contexts</code> to
  1718. list the context nodes in a graph.
  1719. </p>
  1720.  
  1721. <p>Methods <code>librdf_model_get_feature</code>,
  1722. <code>librdf_model_set_feature</code> were modified to take and return
  1723. <code>librdf_node*</code> values.
  1724. </p>
  1725.  
  1726.  
  1727. <h3>Node Class changes</h3>
  1728.  
  1729. <p>Constructors
  1730. <code>librdf_new_node_from_uri_string</code>,
  1731. <code>librdf_new_node_from_uri_local_name</code> and
  1732. <code>librdf_new_node_from_normalised_uri_string</code>
  1733. now take a <code>const unsigned char*
  1734. string</code> URI string.
  1735. Constructors
  1736. <code>librdf_new_node_from_literal</code> and
  1737. <code>librdf_new_node_from_typed_literal</code>
  1738. now take a <code>const unsigned char* string</code> RDF literal.
  1739. Constructor <code>librdf_new_node_from_blank_identifier</code>
  1740. now takes a <code>const unsigned char* string</code> blank node identifier.
  1741. </p>
  1742.  
  1743. <p>Methods
  1744. <code>librdf_node_get_literal_value</code>,
  1745. <code>librdf_node_get_literal_value_as_counted_string</code> and
  1746. <code>librdf_node_get_blank_identifier</code>
  1747. now return a <code>const unsigned char* string</code> RDF literal,
  1748. blank node identifier
  1749.  
  1750. </p>
  1751.  
  1752. <p>(Debugging methods <code>librdf_node_to_string</code> and
  1753. <code>librdf_node_to_counted_string</code>where changed to return a
  1754. <code>const unsigned char* string</code>)
  1755. </p>
  1756.  
  1757.  
  1758. <h3>Parser Class changes</h3>
  1759.  
  1760. <p>Added methods
  1761. <code>librdf_parser_parse_counted_string_as_stream</code> and
  1762. <code>librdf_parser_parse_counted_string_into_model</code>
  1763. for parsing a string with a given length rather than
  1764. a C NUL-terminated string.</p>
  1765.  
  1766.  
  1767. <p>Methods
  1768. <code>librdf_parser_parse_string_as_stream</code> and
  1769. <code>librdf_parser_parse_string_into_model</code>
  1770. now take a <code>const unsigned char* string</code> syntax buffer.
  1771. </p>
  1772.  
  1773. <p>Methods
  1774. <code>librdf_parser_get_feature</code>
  1775. and <code>librdf_parser_set_feature</code>
  1776. were modified to take and return <code>librdf_node*</code> values.
  1777. </p>
  1778.  
  1779.  
  1780. <h3>Query Class changes</h3>
  1781.  
  1782. <p>Constructor <code>librdf_new_query</code> now takes a <code>const
  1783. unsigned char* string</code> query.
  1784. </p>
  1785.  
  1786.  
  1787.  
  1788.  
  1789. <h3>Serializer Class changes</h3>
  1790.  
  1791. <p>Added methods <code>librdf_serializer_get_feature</code> and
  1792. <code>librdf_serializer_set_feature</code> taking and returning
  1793. <code>librdf_node*</code> values like the methods for the model and
  1794. parser classes.
  1795. </p>
  1796.  
  1797.  
  1798. <h3>Statement Class changes</h3>
  1799.  
  1800. <p>The statement objects are now usage counted like most other
  1801. objects so they are cheap to copy.  No user-API level changes
  1802. are needed.</p>
  1803.  
  1804. <p>(Debugging method <code>librdf_statement_to_string</code> now
  1805. returns a <code>const unsigned char* string</code>)
  1806. </p>
  1807.  
  1808. <h3>URI Class changes</h3>
  1809.  
  1810. <p>Constructors
  1811. <code>librdf_new_uri</code>, 
  1812. <code>librdf_new_uri_from_uri_local_name</code>,
  1813. <code>librdf_new_uri_normalised_to_base</code> and
  1814. <code>librdf_new_uri_relative_to_base</code>.
  1815. now take a <code>const unsigned char* string</code> URI string.
  1816. </p>
  1817.  
  1818. <p>Methods
  1819. <code>librdf_uri_as_string</code>,
  1820. <code>librdf_uri_as_counted_string</code>,
  1821. <code>librdf_uri_to_string</code> and
  1822. <code>librdf_uri_to_counted_string</code>
  1823. now return a <code>const unsigned char* string</code> URI string.
  1824. </p>
  1825.  
  1826.  
  1827. <h3>Java API Changes</h3>
  1828.  
  1829. <p>Updated to match API changes above.  Fixes for OSX 10.3</p>
  1830.  
  1831. <h3>Perl API changes</h3>
  1832.  
  1833. <p>Updated to match API changes above.  Fixes for perl 5.8.1 and
  1834. later which changed how <code>MakeMaker</code> installed.  Let perl
  1835. install the files rather than try to force it based on the prefix
  1836. argument to configure.  Make Parser method parse_string_into_model
  1837. call the correct Redland function.  Added OSX Java directories
  1838. to JDK search path.</p>
  1839.  
  1840.  
  1841. <h3>PHP API Changes</h3>
  1842.  
  1843. <p>Updated to match API changes above.  Redland is now started up and
  1844. shutdown once in the PHP module code and does not need to called
  1845. directly.</p>
  1846.  
  1847.  
  1848. <h3>Python API changes</h3>
  1849.  
  1850. <p>Updated to match API changes above.  Fix Node literal_values
  1851. to work with datatype URIs.  Export the NS class.  Added
  1852. a FileStorage class for the storage type <code>file</code>.
  1853. Removed use of the python Distutils which was often
  1854. getting the linking wrong.
  1855. </p>
  1856.  
  1857. <h3>Ruby API changes</h3>
  1858.  
  1859. <p>Updated to match API changes above.</p>
  1860.  
  1861. <h3>Tcl API changes</h3>
  1862.  
  1863. <p>Updated to match API changes above.</p>
  1864.  
  1865.  
  1866. <h3>Other changes</h3>
  1867.  
  1868. <p>Redland now ships with both portable MD5 as well as (new in
  1869. 0.9.15) SHA1 digest implementations used if neither is available via
  1870. an optimised library.</p>
  1871.  
  1872.  
  1873. <h2 id="rel0_9_14"><a name="rel0_9_14">Redland 0.9.14 Changes</a></h2>
  1874.  
  1875. <p>This version of Redland is an update mostly to synchronise
  1876. with the 
  1877. <a href="http://librdf.org/raptor/">Raptor</a> version 1.0.0 (RDF/XML and N-Triples parser) - see
  1878. <a href="http://librdf.org/raptor/NEWS.html">Raptor NEWS</a>
  1879. for the changes since 0.9.12.</p>
  1880.  
  1881. <p>New in this version is the <a href="utils/rdfproc.html">rdfproc</a> utility
  1882. which allows command line creation of redland stores, parsing
  1883. of syntaxes and manipulation of the model.</p>
  1884.  
  1885.  
  1886. <h3>Configuration changes</h3>
  1887.  
  1888. <p>Added <code>--with-raptor</code> to either choose the system
  1889. or internal raptor library.  If omittted, redland will guess
  1890. and choose either the system one, if new enough or the internal
  1891. one (always present).</p>
  1892.  
  1893.  
  1894. <h3>Hash Class changes</h3>
  1895.  
  1896. <p>Added a <code>librdf_hash_put_strings</code> helper method to put a pair of
  1897. string values into a hash.  Useful for making model or storage
  1898. options.</p>
  1899.  
  1900. <h3>Node Class changes</h3>
  1901.  
  1902. <p>Resource (URI) / literal / blank nodes are now interned on
  1903. construction so there is only one object for each distinct
  1904. <code>librdf_node</code> object. This reduces memory and makes
  1905. copying cheaper at the cost of an increase in construction cost.
  1906. Copying nodes is very common, since not only is it done for nodes but
  1907. any time a statement is used or returned.  This interning was already
  1908. done for the URI class but the change required
  1909. <code>librdf_node</code> to be made immutable, which was done in
  1910. 0.9.13.</p>
  1911.  
  1912. <h3>Storage Class changes</h3>
  1913.  
  1914. <p>Added <code>librdf_storage_context_as_stream</code> deprecating
  1915. <code>librdf_storage_context_serialise</code> to be consistent with the
  1916. *as_stream method name changes to model.</p>
  1917.  
  1918. <p>Added <code>librdf_new_storage_with_options</code> taking an
  1919. <code>librdf_hash*</code>
  1920. of options rather than the string of <code>librdf_new_storage</code>.</p>
  1921.  
  1922. <p>Added new optional storage factory methods context_add_statements
  1923. and context_remove_statements.  If omitted, the storage class
  1924. implements them with context_add_statement and context_remove_statement.</p>
  1925.  
  1926.  
  1927. <h3>Stream and Iterator Classes changes</h3>
  1928.  
  1929. <p>Optimised the stream and iterator internals to do less factory
  1930. method calls when looking for new items or the end of
  1931. stream/iterator.  This should make them slightly faster.</p>
  1932.  
  1933.  
  1934. <h3>Miscellaneous changes</h3>
  1935.  
  1936. <p>Renamed Redland statics to be <code>librdf_*</code> rather than
  1937. <code>redland_*</code>.  Added a one-line
  1938. librdf_short_copyright_string.</p>
  1939.  
  1940.  
  1941. <h3>Perl API Changes</h3>
  1942.  
  1943. <p>Fixed the broken use of <tt>UNIVERSAL::isa</tt></p>
  1944.  
  1945.  
  1946.  
  1947. <h2 id="rel0_9_13"><a name="rel0_9_13">Redland 0.9.13 Changes</a></h2>
  1948.  
  1949. <p>This version of Redland is a major update to 0.9.12 changing the
  1950. node class.  <code>librdf_node</code> objects are now immutable once created,
  1951. higher-level language APIs no longer have deal with sharing or
  1952. copying internals, some additional API support for parsing content
  1953. from strings.</p>
  1954.  
  1955. <p>This includes the stable and complete version 0.9.12 of the 
  1956. <a href="http://librdf.org/raptor/">Raptor parser</a>
  1957. which supports all of the revised RDF/XML syntax.</p>
  1958.  
  1959. <p>Initial work was added on an ECMA CLI interface using
  1960. the C# ("C sharp") language.</p>
  1961.  
  1962. <p>Blank nodes generated by parsing the syntaxes are now
  1963. generated more unique (not guaranteed) based on the Redland
  1964. startup time and a serial number.</p>
  1965.  
  1966. <p>The Perl, Python and Java APIs now always return new nodes
  1967. and statements removing the need to consider sharing at this
  1968. level.  This means that the following operation is legal in
  1969. Perl, Python and Java:</p>
  1970. <pre>
  1971. # perl
  1972. $n=RDF::Redland::Node->from_uri("http://example.org/foo");
  1973. $s=new RDF::Redland::Statement($n, $n, $n);
  1974. $model->add($s);
  1975.  
  1976. # python
  1977. n=RDF.Uri("http://example.org/foo")
  1978. s=RDF.Statement(n, n, n) # n is used as a resource RDF.Node here
  1979. model.add_statement(s)
  1980. </pre>
  1981.  
  1982. <h3>Configuration</h3>
  1983.  
  1984. <p>Several improvements were made to the building and configuring
  1985. including a better attempt to find matching Sleepycat/Berkeley DB
  1986. header and library files (and support BDB up to 4.1), searching for
  1987. installed Java JDKs and Tcl headers.  Each of the language interfaces
  1988. can be individually enabled to be build, tested and installed with
  1989. the main C library.</p>
  1990.  
  1991.  
  1992. <h3>Node Class changes</h3>
  1993.  
  1994. <p>The <code>librdf_node</code> class was modifed to make objects
  1995. immutable once constructed, they cannot be modified.  The following
  1996. set methods were consequently removed.</p>
  1997.  
  1998. <ul>
  1999. <li><code>librdf_node_set_blank_identifier</code></li>
  2000. <li><code>librdf_node_set_li_ordinal</code></li>
  2001. <li><code>librdf_node_set_literal_value</code></li>
  2002. <li><code>librdf_node_set_type</code></li>
  2003. <li><code>librdf_node_set_typed_literal_value</code></li>
  2004. <li><code>librdf_node_set_uri</code></li>
  2005. </ul>
  2006.  
  2007. <p>The following utility methods were added (covering
  2008. all the <code>librdf_node_get_type</code> values):</p>
  2009.  
  2010. <ul>
  2011. <li><code>librdf_node_is_blank</code> - return non-0 if the node is a blank node</li>
  2012. <li><code>librdf_node_is_literal</code> - return non-0 if the node is a literal</li>
  2013. <li><code>librdf_node_is_resource</code> - return non-0 if the node is a URI</li>
  2014. </ul>
  2015.  
  2016. <p>(These are reflected into the same methods on
  2017. the Perl, Python and Java node classes)</p>
  2018.  
  2019. <p><code>LIBRDF_NODE_TYPE_LI</code> as returned by <code>librdf_node_get_type</code>
  2020. was deleted, it was never used.</p>
  2021.  
  2022. <p>To support datatyped literals, the following method was added:</p>
  2023.  
  2024. <ul>
  2025. <li>librdf_node_get_literal_value_datatype_uri - get the typed literal datatype URI of the literal node</li>
  2026. </ul>
  2027.  
  2028.  
  2029. <h3>Model Class changes</h3>
  2030.  
  2031. <p>Added <code>ibrdf_model_sync</code> to sync the model to the backing store.</p>
  2032.  
  2033. <p>Added <code>librdf_model_as_stream</code> and
  2034. <code>librdf_model_context_as_stream</code> to replace
  2035. <code>librdf_model_context_serialise</code> and
  2036. <code>librdf_model_context_serialize</code> respectively.  This was
  2037. done both to reduce the confusion with the
  2038. <code>librdf_serializer</code> class and the mixture of US/UK
  2039. spelling of that word.  The old functions will remain for now.
  2040. </p>
  2041.  
  2042.  
  2043.  
  2044. <h3>Parser Class changes</h3>
  2045.  
  2046. <p>Added <code>librdf_parser_parse_string_as_stream</code> and
  2047. <code>librdf_parser_parse_string_into_model</code> to allow parsing
  2048. content from strings.</p>
  2049.  
  2050.  
  2051. <h3>Statement Class changes</h3>
  2052.  
  2053. <p>Added <code>librdf_statement_is_complete</code> to test if a
  2054. statement has all the subject, predicate and object fields assigned.
  2055. Partial statements cannot be added to a model but can be used in
  2056. matching statement queries with
  2057. <code>librdf_model_find_statements</code>.</p>
  2058.  
  2059.  
  2060. <h3>Storage Class changes</h3>
  2061.  
  2062. <p>Added <code>librdf_storage_sync</code> to sync the backing store.
  2063. (This is slightly internal to Redland, you should not be calling this
  2064. directly)</p>
  2065.  
  2066.  
  2067. <h3>Perl Interface Changes</h3>
  2068.  
  2069. <p>Updated to make the object constructors less verbose and to allow
  2070. Redland URI objects and native perl URIs to be used in place of
  2071. Redland Nodes where convienent (such as in making Statements).  All
  2072. existing code should work but can be shortened.
  2073. A new <code>--with-perl</code> configure argument to enable the perl
  2074. interface.
  2075. </p>
  2076.  
  2077.  
  2078. <h3>Python API changes</h3>
  2079.  
  2080. <p>A major update to use Python 2.2+ idioms and features by Edd
  2081. Dumbill with help from Matt Biddulph for unit tests.  A new
  2082. <code>--with-python</code> configure argument to enable the python
  2083. interface.  Edd wrote the following change log.</p>
  2084.  
  2085. <p>General changes</p>
  2086. <ul>
  2087.   <li>Removed string exceptions and replaced with RedlandError ones</li>
  2088.   <li>Where underlying Redland C objects were unexpectedly null, raise
  2089.     exceptions rather than returning None, "" or [] as appropriate.</li>
  2090.   <li>Raise exceptions if Redland C constructors fail in Python
  2091.     constructors.</li>
  2092.   <li>Did quite a lot of documentation updating, where possible
  2093.     demonstrating preferred Pythonic usages.</li>
  2094.   <li>Added more unit tests to test changed functionality.</li>
  2095. </ul>
  2096.  
  2097. <h4>RDF.Node class</h4>
  2098. <ul>
  2099.   <li>Constructor now accepts Uri to make a resource/property node, or
  2100.     a string to make a string literal</li>
  2101.   <li>Removed usage of node_type() in favour of is_resource(), is_blank()
  2102.     etc methods.</li>
  2103.   <li><strong>DEPRECATED</strong> get_blank_identifier() etc. methods in favour of
  2104.     node.blank_identifier etc properties.  Raise exception if properties
  2105.     inconsistent with the node type are requested.</li>
  2106. </ul>
  2107.  
  2108. <h4>RDF.Statement class</h4>
  2109. <ul>
  2110.   <li>No need to name subject, predicate, object in constructor any more.
  2111.     Uris or string literals accepted in place of nodes in constructor
  2112.     argument.</li>
  2113.   <li>__getattr__ method deleted, using new-style property() for
  2114.     subject, predicate, object</li>
  2115. </ul>
  2116.  
  2117. <h4>RDF.Model class</h4>
  2118.  
  2119. <ul>
  2120.   <li>Deleted get_*_iterator methods</li>
  2121.   <li>Renamed sources() to get_sources(), targets() to get_targets(),
  2122.     arcs() to get_predicates().  Retained old method names as aliases.</li>
  2123.   <li>Added get_sources_context(), get_targets_context(),
  2124.     get_predicates_context() which return (node, context) tuples.</li>
  2125.   <li>Amended get_source(), get_sources() etc methods so that Uri and
  2126.     string literals were acceptable as shortcut types for nodes.</li>
  2127.   <li>Added find_statements_context() which returns (statement, context)
  2128.     tuples.</li>
  2129.   <li>Renamed context_remove_statements() to
  2130.     remove_statements_with_context(). Retained old method name as an
  2131.     alias.</li>
  2132.   <li>Added __delitem__ method so del[statement] and del[statement,
  2133.     context] work.</li>
  2134.   <li>Added append() method so append(statement) and append(statement,
  2135.     context) work.  Suggest that append() is used in preference to
  2136.     add_statement() for Python idiomatic usage.</li>
  2137.   <li><strong>DEPRECATED</strong> serialise() in favour of as_stream().</li>
  2138.   <li>Added as_stream_context() to serialise (statement, context) tuples.</li>
  2139.   <li>Exception raised if len() is attempted on model with a non-countable
  2140.     storage.</li>
  2141.   <li><strong>DEPRECATED</strong> Model.add(), Model.add_typed_literal_statement() usages:
  2142.     now that constructing Statements is easier, it's incongruous to have
  2143.     these in the model.  Additionally it saves reproducing various bits
  2144.     of error checking that properly belong in the Node() constructor.</li>
  2145.   <li>Implemented __contains__() so "if statement in model" and
  2146.     "if (statement, context) in model" work as expected using the more
  2147.     efficient Redland C methods where possible.</li>
  2148. </ul>
  2149.  
  2150. <h4>RDF.Stream class</h4>
  2151.  
  2152. <ul>
  2153.   <li><strong>DEPRECATED</strong> Stream.context_iter().  Use in preference the _context
  2154.     variants of the appropriate Model methods.  This leads to fewer
  2155.     lines of code.</li>
  2156. </ul>
  2157.  
  2158. <h4>RDF.Uri class</h4>
  2159.  
  2160. <ul>
  2161.   <li>Amended constructor so strings or Uri instances can be passed as
  2162.     the first argument, without named parameters being required, and
  2163.     the right thing still happen.</li>
  2164. </ul>
  2165.  
  2166.  
  2167. <h3>Java Interface Changes</h3>
  2168.  
  2169. <p>Additions for the new API calls as outlined above (such
  2170. as model/storage sync, parsing from strings etc.). New configure
  2171. argument <code>--with-jdk</code> to pick the JDK in order to
  2172. find the JNI headers.  See the <a href="docs/java.html">java API</a>
  2173. page for details.</p>
  2174.  
  2175.  
  2176. <h3>PHP, Ruby and Tcl Interfaces Changes</h3>
  2177.  
  2178. <p>Updates in configuring and building these interfaces and new
  2179. <code>--with-php</code>, <code>--with-ruby</code> and <code>--with-tcl</code>
  2180. configure arguments.  See the corresponding API pages and
  2181. installation documentation for details.  Tcl now tries to guess the
  2182. includes directories.</p>
  2183.  
  2184.  
  2185. <h3>Internal changes and fixes</h3>
  2186.  
  2187. <ul>
  2188. <li>Added Sleepycat/BDB 4.0 and 4.1 support - the open API changed again</li>
  2189.  
  2190. <li>Split the <code>librdf_model</code> class into model interface
  2191. (<code>librdf_model</code>) and implementation class
  2192. (<code>librdf_model_storage</code>).</li>
  2193.  
  2194. <li>Removed the old and outdated repat RDF parser.</li>
  2195.  
  2196. <li>Removed the very old expat XML parser from the sources;
  2197. much newer or expat or libxml2 are very widespread.</li>
  2198.  
  2199. <li>Added simple thread support from patches by Seth Ladd with
  2200. configuration option <code>--with-threads</code> that locks key shared
  2201. classes to allow separate threads to work in the same memory
  2202. space. The current locked classes are URI and World.</li>
  2203.  
  2204. <li>Deleting statements in the in-memory store now works.</li>
  2205.  
  2206. <li>Getting the context of iterators returned from in-memory
  2207. sources, targets, arcs now works.</li>
  2208.  
  2209. </ul>
  2210.  
  2211.  
  2212. <h2 id="rel0_9_12"><a name="rel0_9_12">Redland 0.9.12 Changes</a></h2>
  2213.  
  2214. <p>This version of Redland is a major update to 0.9.11 incorporating
  2215. a much more improved, complete and stable version 0.9.7 of the 
  2216. <a href="http://librdf.org/raptor/">Raptor parser</a>
  2217. and a significant new feature, contexts.  The
  2218. high-level language APIs received some updates and the start of two
  2219. new languages APIs were added: <a href="docs/ruby.html">Ruby</a> and
  2220. <a href="docs/php.html">PHP</a>.</p>
  2221.  
  2222. <p>Several incompatible API changes were made in this release that
  2223. effect the C interface and all the higher level language APIs.  These
  2224. were made to support contexts and to fix some inconsistencies in the
  2225. interface about object ownership.</p>
  2226.  
  2227. <p>The persistent storage format was changed to support RDF typed
  2228. literals and this requires an upgrade of any existing
  2229. Berkeley/Sleepycat DB stores created by Redland 0.9.11 or earlier.  A
  2230. utility <em>redland-db-upgrade</em> is provided that will create an
  2231. updated store from an existing one.</p>
  2232.  
  2233. <p>A Perl script <a href="utils/update-api-0912.pl">utils/update-api-0912.pl</a>
  2234. can help automate the API changes as far as possible or warn about those
  2235. that cannot be automatically updated.</p>
  2236.  
  2237.  
  2238. <h3>New Feature - Contexts</h3>
  2239.  
  2240. <p>This feature allows a Node to be given whenever a statement is
  2241. added to a model which can can be retrieved from any model query that
  2242. returns answers as an Iterator of Nodes or a Stream of Statements.
  2243. Both of these classes gained a new method <code>get_context</code>
  2244. that returns the original Node that was given when the statement
  2245. corresponding to the answer was added to the model.</p>
  2246.  
  2247. <p>The context node can also be used to add and remove sets of
  2248. statements to/from a model, and each statement with a given
  2249. context node can be listed as a stream of statements.</p>
  2250.  
  2251. <p>Adding this feature required substantial internal changes to these
  2252. two classes and the internal storage apis and implementations along
  2253. with moderate code changes at the application level, which are
  2254. described below.</p>
  2255.  
  2256. <p>This feature can be used for the following (not an exhaustive list):</p>
  2257.  
  2258. <ul>
  2259. <li>Enable true graph merging / updating / demerging - identify the
  2260. subgraphs with context nodes.</li>
  2261. <li>Statement Identity - add each statement with a different context node</li>
  2262. <li>Statement Provenance - use the context node as the subject of
  2263. other statements about the statement that is returned.</li>
  2264. </ul>
  2265.  
  2266.  
  2267. <h3>Iterator Class Changes</h3>
  2268.  
  2269. <p>The <a href="docs/api/iterator.html">Iterator</a>
  2270. <code>get_next</code> method was split into <code>get_object</code>
  2271. always returning a pointer to a shared object and the
  2272. <code>next</code> method to advance the iterator.
  2273. The <code>get_object</code> method is generally called
  2274. <code>current</code> in the higher level language APIs.</p>
  2275.  
  2276. <p>(Iterator and Stream now have consistent method names; they
  2277. may be merged in future.)</p>
  2278.  
  2279. <p>The <code>get_object</code> method now always returns a pointer to
  2280. a shared object.  If this object is needed outside the scope of an
  2281. iteration, it must be copied, which for Nodes is the copy constructor
  2282. <code>librdf_new_node_from_node</code>.</p>
  2283.  
  2284. <p>C example for Redland 0.9.11 and earlier:</p>
  2285. <pre>
  2286.   while(!librdf_iterator_end(iterator)) {
  2287.     node=(librdf_node*)librdf_iterator_get_next(iterator);
  2288.     /* do something with the node */
  2289.   }
  2290. </pre>
  2291.  
  2292. <p>Redland 0.9.12:</p>
  2293. <pre>
  2294.   while(!librdf_iterator_end(iterator)) {
  2295.     node=(librdf_node*)librdf_iterator_get_object(iterator);
  2296.     /* do something with the node */
  2297.     librdf_iterator_next(iterator);
  2298.   }
  2299. </pre>
  2300.  
  2301. <p>A new method <code>get_context</code> was added returning a Node
  2302. for the context of the original Statement that generated the Iterator
  2303. Node.</p>
  2304.  
  2305. <p>C Iterator context example:</p>
  2306. <pre>
  2307.   while(!librdf_iterator_end(iterator)) {
  2308.     node=(librdf_node*)librdf_iterator_get_object(iterator);
  2309.     context_node=(librdf_node*)librdf_iterator_get_context(iterator);
  2310.     /* do something with the node and its context */
  2311.     librdf_iterator_next(iterator);
  2312.   }
  2313. </pre>
  2314.  
  2315.  
  2316.  
  2317. <h3>Model Class Changes</h3>
  2318.  
  2319. <p>The <a href="docs/api/model.html">Model</a>
  2320. <code>add_statement</code> method no longer takes ownership of the
  2321. passed in statement object.  The caller now retains ownership and can
  2322. reuse the statement several times and has responsibility for freeing it
  2323. if need be (when it isn't shared).</p>
  2324.  
  2325. <p>C example for Redland 0.9.11 and earlier:</p>
  2326. <pre>
  2327.   librdf_model_add_statement(model, statement);
  2328. </pre>
  2329.  
  2330. <p>Redland 0.9.12:</p>
  2331. <pre>
  2332.   librdf_model_add_statement(model, statement);
  2333.   librdf_free_statement(statement);
  2334. </pre>
  2335.  
  2336.  
  2337. <p>C streaming statement example for Redland 0.9.11 and earlier:</p>
  2338. <pre>
  2339.   while(!librdf_stream_end(stream)) {
  2340.     librdf_statement *statement=librdf_stream_next(stream); 
  2341.     /* This statement is new, so could be added directly */
  2342.     librdf_model_add_statement(model, statement);
  2343.   }
  2344. </pre>
  2345.  
  2346. <p>Redland 0.9.12:</p>
  2347. <pre>
  2348.   while(!librdf_stream_end(stream)) {
  2349.     librdf_statement *statement=librdf_stream_get_object(stream); 
  2350.     /* This statement is now shared so can still be just added */
  2351.     librdf_model_add_statement(model, statement);
  2352.   }
  2353. </pre>
  2354.  
  2355.  
  2356. <p><code>librdf_model_add_string_literal_statement</code> lost the
  2357. xml_space argument.</p>
  2358.  
  2359. <p>A new method was added to add a Statement with
  2360. an RDF datatyped literals object:</p>
  2361. <pre>
  2362.   int librdf_model_add_typed_literal_statement(librdf_model* model,
  2363.      librdf_node* subject, 
  2364.      librdf_node* predicate, 
  2365.      char* string, char *xml_language, librdf_uri *datatype_uri);
  2366. </pre>
  2367.  
  2368. <p>This should be used in preference to
  2369. <code>librdf_model_add_string_literal_statement</code> which remains
  2370. in the API as a wrapper around the above.</p>
  2371.  
  2372. <p>New methods were added to add, remove and list Statements to contexts.</p>
  2373.  
  2374. <pre>
  2375.   /* Add a single statement to the model with context */
  2376.   int librdf_model_context_add_statement(librdf_model* model,
  2377.     librdf_node* context, librdf_statement* statement);
  2378.  
  2379.   /* Add all statements on the stream to the model with context */
  2380.   int librdf_model_context_add_statements(librdf_model* model, 
  2381.     librdf_node* context, librdf_stream* stream);
  2382.  
  2383.   /* Remove a single statement from the model with the given context */
  2384.   int librdf_model_context_remove_statement(librdf_model* model, 
  2385.     librdf_node* context, librdf_statement* statement);
  2386.  
  2387.   /* Remove all statements from the model with given context */
  2388.   int librdf_model_context_remove_statements(librdf_model* model, 
  2389.     librdf_node* context);
  2390.  
  2391.   /* List all statements in the model with the given context */
  2392.   librdf_stream* librdf_model_context_serialize(librdf_model* model, 
  2393.     librdf_node* context);
  2394. </pre>
  2395.  
  2396.  
  2397. <h3>Node Class Changes</h3>
  2398.  
  2399. <p>The <a href="docs/api/node.html">Node</a> class gained a new constructor:</p>
  2400. <pre>
  2401.   librdf_node* librdf_new_node_from_typed_literal(
  2402.     librdf_world *world,
  2403.     const char *string,
  2404.     const char *xml_language, 
  2405.     librdf_uri* datatype_uri);
  2406. </pre>
  2407.  
  2408. <p>that should be used in preference to
  2409. <code>librdf_new_node_from_literal</code> which remains in the API as
  2410. a wrapper around the above.  </p>
  2411.  
  2412. <p><code>librdf_node_new_nodefrom_literal</code> lost the
  2413. xml_space argument.</p>
  2414.  
  2415.  
  2416. <h3>Parser Class Changes</h3>
  2417.  
  2418. <p>The <a href="docs/api/parser.html">Parser</a> class has an updated
  2419. <a href="http://librdf.org/raptor/">Raptor parser</a>
  2420. version 0.9.7 - parsers named <code>raptor</code> for RDF/XML
  2421. (MIME Type <code>application/rdf+xml</code>)
  2422. and <code>ntriples</code> for N-Triples.  See the
  2423. <a href="http://librdf.org/raptor/NEWS.html">Raptor NEWS</a>
  2424. for the detailed changes since 0.9.5 in the last release of Redland.</p>
  2425.  
  2426. <p>The Java SiRPAC parsers <code>sirpac-stanford</code>,
  2427. <code>sirpac-w3c</code> and the W3C LibWWW parser <code>libwww</code>
  2428. have been removed.  Raptor replaces them.</p>
  2429.  
  2430.  
  2431. <h3>Serializer Class Changes</h3>
  2432.  
  2433. <p>The <a href="docs/api/serializer.html">Serializer</a> class
  2434. gained a new method:</p>
  2435.  
  2436. <pre>
  2437.   int librdf_serializer_serialize_model_to_file(
  2438.     librdf_serializer* serializer,
  2439.     const char *name,
  2440.     librdf_uri* base_uri, 
  2441.     librdf_model* model);
  2442. </pre>
  2443.  
  2444. <p>This writes the serialized model to a filename
  2445. (rather than a file handle as done by 
  2446. <code>librdf_serializer_serialize_model</code>)
  2447. which is easier to use from higher level language APIs until a
  2448. cross-language I/O abstraction is available.</p>
  2449.  
  2450. <p>The class gained an RDF/XML serializer that can be called
  2451. either by the name <code>rdfxml</code> or the
  2452. MIME Type <code>application/rdf+xml</code>.  The
  2453. examples in each language have been updated to demonstrate
  2454. using this.</p>
  2455.  
  2456.  
  2457. <h3>Storage Class Changes</h3>
  2458.  
  2459. <p>The built in storage factories (<code>memory</code>,
  2460. <code>hashes</code>) now both support contexts.  These are enabled by
  2461. adding the storage option <code>contexts='yes'</code> to the options
  2462. string.  The hashes storage additionally supports indexing predicates
  2463. as an extra hash which can be enabled with <code>index-predicates='yes'</code>.
  2464. This makes triple queries of the form
  2465. (subject unknown, predicate known, object unknown) fast.
  2466. </p>
  2467.  
  2468. <p>C Example of creating a 0.9.12 storage that does contexts using
  2469. on-disk Berkeley/Sleepycat DB:</p>
  2470. <pre>
  2471.    storage=librdf_new_storage(world,
  2472.      "hashes", 
  2473.       name,
  2474.      "hash-type='bdb',write='yes',new='yes',contexts='yes'");
  2475. </pre>
  2476.  
  2477.  
  2478. <h3>Stream Class Changes</h3>
  2479.  
  2480. <p>The <a href="docs/api/stream.html">Stream</a>
  2481. <code>next</code> method was split into <code>get_object</code>
  2482. always returning a pointer to a shared Statement and the
  2483. <code>next</code> method to advance the iterator.
  2484. The <code>get_object</code> method is generally called
  2485. <code>current</code> in the higher level language APIs.</p>
  2486.  
  2487. <p>(Iterator and Stream now have consistent method names; they
  2488. may be merged in future.)</p>
  2489.  
  2490.  
  2491. <p>C example for Redland 0.9.11 and earlier:</p>
  2492. <pre>
  2493.   while(!librdf_stream_end(stream)) {
  2494.     statement=(librdf_statement*)librdf_stream_next(stream);
  2495.     /* do something with the statement */
  2496.   }
  2497. </pre>
  2498.  
  2499. <p>Redland 0.9.12:</p>
  2500. <pre>
  2501.   while(!librdf_stream_end(stream)) {
  2502.     statement=(librdf_statement*)librdf_stream_get_object(stream);
  2503.     /* do something with the statement */
  2504.     librdf_stream_next(stream);
  2505.   }
  2506. </pre>
  2507.  
  2508.  
  2509. <p>A new method <code>get_context</code> was added returning a Node
  2510. for the context of the Statement.</p>
  2511.  
  2512. <p>C Stream context example:</p>
  2513. <pre>
  2514.   while(!librdf_stream_end(stream)) {
  2515.     statement=(librdf_statement*)librdf_stream_get_object(stream);
  2516.     context_node=(librdf_node*)librdf_stream_get_context(iterator);
  2517.     /* do something with the statement and its context node */
  2518.     librdf_stream_next(stream);
  2519.   }
  2520. </pre>
  2521.  
  2522.  
  2523.  
  2524. <h3>Perl Interface Changes</h3>
  2525.  
  2526. <p>The <a href="docs/perl.html">Perl</a> interface
  2527. moved to the <code>RDF::Redland</code> package (the <code>RDF</code>
  2528. namespace was deprecated in 0.9.11).</p>
  2529.  
  2530. <p>The interface was updated to receive Redland error and warning
  2531. messages callbacks.  These can be set using the
  2532. <code>RDF::Redland::set_error_handler</code>
  2533. and <code>RDF::Redland::set_warning_handler</code> subroutines
  2534. taking a subroutine argument.  They are called with a single
  2535. scalar argument which is the Redland message.</p>
  2536.  
  2537. <p>The interface was updated to match the Interator and Stream
  2538. changes described above.</p>
  2539.  
  2540. <p>Perl iterator example for Redland 0.9.11 and earlier:</p>
  2541. <pre>
  2542.   while(!$iterator->end) {
  2543.     my $node=$iterator->next;
  2544.     # do something with the node
  2545.   }
  2546. </pre>
  2547.  
  2548. <p>Redland 0.9.12:</p>
  2549. <pre>
  2550.   while(!$iterator->end) {
  2551.     my $node=$iterator->current;
  2552.     # do something with the node
  2553.     $iterator->next;
  2554.   }
  2555. </pre>
  2556.  
  2557.  
  2558. <p>Perl stream example for Redland 0.9.11 and earlier:</p>
  2559. <pre>
  2560.   while(!$stream->end) {
  2561.     my $statement=$stream->next;
  2562.     # do something with the statement
  2563.   }
  2564. </pre>
  2565.  
  2566. <p>Redland 0.9.12:</p>
  2567. <pre>
  2568.   while(!$stream->end) {
  2569.     my $statement=$stream->current;
  2570.     # do something with the statement
  2571.     $stream->next;
  2572.   }
  2573. </pre>
  2574.  
  2575.  
  2576. <p>Perl example of using the Serializer class:</p>
  2577.  
  2578. <pre>
  2579.   # Use any rdf/xml parser that is available
  2580.   my $serializer=new RDF::Redland::Serializer("rdfxml");
  2581.   $serializer->serialize_model_to_file("output.rdf", $uri, $model);
  2582. </pre>
  2583.  
  2584.  
  2585. <h3>Python API Changes</h3>
  2586.  
  2587. <p>The <a href="docs/python.html">Python</a> interface
  2588. gained pydoc comments, along with an
  2589. <a href="docs/pydoc/RDF.html">HTML derived version</a>.
  2590. </p>
  2591.  
  2592. <p>The interface was updated to receive Redland error and warning
  2593. messages callbacks as python exceptions.  These can be caught
  2594. using the standard python try {} catch {} blocks.</p>
  2595.  
  2596. <p>The interface was updated to match the Interator and Stream
  2597. changes described above.</p>
  2598.  
  2599. <p>Python iterator example for Redland 0.9.11 and earlier:</p>
  2600. <pre>
  2601.   while not iterator.end():
  2602.     node=iterator.next()
  2603.     # do something with the node
  2604. </pre>
  2605.  
  2606. <p>Redland 0.9.12:</p>
  2607. <pre>
  2608.   while not iterator.end():
  2609.     node=iterator.current()
  2610.     # do something with the node
  2611.     iterator.next()
  2612. </pre>
  2613.  
  2614.  
  2615. <p>Python stream example for Redland 0.9.11 and earlier:</p>
  2616. <pre>
  2617.   while not stream.end():
  2618.     statement=stream.next()
  2619.     # do something with the statement
  2620. </pre>
  2621.  
  2622. <p>Redland 0.9.12:</p>
  2623. <pre>
  2624.   while not stream.end():
  2625.     statement=stream.current()
  2626.     # do something with the statement
  2627.     stream.next()
  2628. </pre>
  2629.  
  2630.  
  2631. <p>Python example of using the Serializer class:</p>
  2632.  
  2633. <pre>
  2634.   # Use any rdf/xml parser that is available
  2635.   serializer=RDF.Serializer()
  2636.   serializer.serialize_model_to_file("output.rdf", model)
  2637. </pre>
  2638.  
  2639.  
  2640.  
  2641. <h3>Java Interface Changes</h3>
  2642.  
  2643. <p>The <a href="docs/java.html">Java</a> classes were updated to have
  2644. a <code>finished()</code> method that the user can call to cleanup
  2645. objects replacing the rather useless Java <code>finalize()</code>
  2646. method that gives no guarantees to when it is called.</p>
  2647.  
  2648. <p>The Java API is still experimental and may change further.</p>
  2649.  
  2650.  
  2651. <h2 id="rel_older"><a name="rel_older">Redland 0.9.1 - Redland 0.9.11 Changes</a></h2>
  2652.  
  2653. <p>Release notes for 0.9.11 and earlier are in the
  2654. <a href="NEWS.html">NEWS page</a> or
  2655. <a href="ChangeLog">ChangeLog</a>
  2656. </p>
  2657.  
  2658.  
  2659.  
  2660. <hr />
  2661.  
  2662. <p>Copyright (C) 2000-2009 <a href="http://www.dajobe.org/">Dave Beckett</a><br />Copyright (C) 2000-2005 <a href="http://www.bristol.ac.uk/">University of Bristol</a></p>
  2663.  
  2664. </body>
  2665. </html>
  2666.